[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] SynthDef with case



Use the bus system for modular-like synth designs, what you did doesnt work because the case is an sclang statement and doesnt get sent to the scsynth server.

On Dec 22, 2007 1:07 PM, marinos < marinos@xxxxxxxxxxxxxx> wrote:
How can I define a SynthDef which chooses between possible alternatives
routes? Something like a modular system.
I tried this idea:

SynthDef(\aaaa, {arg filter=0;
   var z=Pan2.ar(.....
         x= case
               {filter == 0} {z}
               {filter == 1} { LPF.ar(z,....}
               {filter == 2} ....
Out.ar(0,x)...


but this didn't worked. How
 can I pass an argument to a synthdef which would change filter type??

Thx in advance
_______________________________________________
sc-users mailing list
sc-users@xxxxxxxxxxxxxxx
http://www.create.ucsb.edu/mailman/listinfo/sc-users