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.
bmSClib/NodeDictionary/makeBufferProcessingSynthDe...

18 lines
366 B

+ 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);
);
});
}
}