You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
+ NodeDictionary {
|
|
makeBufferProcessingSynthDef {
|
|
SynthDef(this[\name], {
|
|
var signal, gate;
|
|
|
|
gate = \gate.tr(0);
|
|
|
|
signal = SynthDef.wrap(
|
|
func: this[\func],
|
|
);
|
|
|
|
Out.ar(
|
|
\out.kr(0),
|
|
this.processSig(signal, gate);
|
|
);
|
|
});
|
|
}
|
|
} |