cl-collider icon indicating copy to clipboard operation
cl-collider copied to clipboard

How to route proxies to each other?

Open kflak opened this issue 6 months ago • 2 comments

Hi,

My (currently) favorite way of creating an effect chain in sclang goes a bit like this:

Ndef(\test, Pdef(\test)).play;
Ndef(\test).filter(1, {|in|
		(in * 30.dbamp).tanh;
                 // ... more signal processing...
});

... where Pdef(\test) is some pattern generating sound.

Is this possible to replicate in cl-collider?

kflak avatar Aug 15 '24 09:08 kflak