You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
497 B
Python
15 lines
497 B
Python
FluidTransients : MultiOutUGen {
|
|
*ar { arg in = 0, order = 20, blockSize = 256, padSize = 128, skew = 0.0, threshFwd = 2.0, threshBack = 1.1, windowSize=14, clumpLength=25;
|
|
^this.multiNew('audio', in.asAudioRateInput(this), order, blockSize, padSize, skew, threshFwd, threshBack, windowSize, clumpLength)
|
|
}
|
|
init { arg ... theInputs;
|
|
inputs = theInputs;
|
|
channels = [
|
|
OutputProxy(rate, this, 0),
|
|
OutputProxy(rate, this, 1)
|
|
];
|
|
^channels
|
|
}
|
|
checkInputs { ^this.checkNInputs(1) }
|
|
}
|