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/makeBufferProcessingNdef.sc

14 lines
232 B

+ NodeDictionary {
makeBufferProcessingNdef {
| name, buf, quant = 1.0 |
var ndef = Ndef(name);
ndef.proxyspace.quant = quant;
ndef[0] = SynthDef.wrap(
func: this[\func],
prependArgs: [buf]
);
ndef.play;
^ndef;
}
}