On Tue, Nov 12, 2013 at 8:09 PM, Victor Bombi <sonoro@xxxxxxxxxxxxxx> wrote:Yes, that's why it would be optional and local. Either per synthdef,
> +1 to have feedback loops 1 sample length to be able to code anything from
> the synthdef
>
> but I guess that it would be much less efficient than 64 samples
per synth instance, or better yet: for part of the ugen graph.
// per synthdef
SynthDef(\foo, {
...
}, blockSize:1).add;
// per synth
Synth(\bar, blockSize:1);
// part of graph (my fav)
SynthDef(\zoo) {
...
WithBlockSize(1) {
...
};
...
}.add;