commonMain.com.sudoplay.joise.module.SourcedModule.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generator-jvm Show documentation
Show all versions of generator-jvm Show documentation
Accidental Noise Generator for JVM and JS
The newest version!
package com.sudoplay.joise.module
abstract class SourcedModule : Module() {
var source = ScalarParameter(0.0)
protected set
open fun setSource(source: Double) {
this.source.value = source
}
open fun setSource(source: Module) {
this.source.module = source
}
}