I filled an array with 32 feedback sine osc’s , the feedback is controlled by an LFNoise0 , the mul of the lfo noise defines the amount of feedback , thus turning the sin into a sawosh knd of shape .
All works well , except when the LFO noise mul: is set to zero , then supercollider gives an error
Failure in server ,new synthdef not found
I think the !2 has something to do with it , when processing it mono it works .
Also , there is are obvious discontiniuities in the sound w (when LFnoise mul is not zero )
(
{
Array.fill(32,{SinOscFB.ar(220+(220.rand),feedback:LFNoise0.ar(1,mul:1,add:0.5))})*1/32!2;/////turn LFNoise mul: to zero
}.play
)