| any light on the horizon? I really would like to use Instr with Jitlib and or inside Routines. But I don't get any args updated. I get it to work with InstrSpawner and Pbind.
Hi felix, I just saw that I wrote you the wrong rev number. The newest rev is 2662 not 2665.
This is the Instr from the example. Instr("car1mod1", {arg note = 49, modPartial1 = 1, index1 = 1, mul = 0.1; var mod, car; [ \midinote, [0.0, 20.0], [0.0, 20.0], [0.0, 1.0] ]);
just another simple example from the help-file which is also not working:
Instr(\Pulse,{ arg freq=440.0,width=0.5,mul=0.1; }); p = Patch( \Pulse, [ 300, 0.2, 0.1 ]); c = Patch( \Pulse, [ 500, 0.3, 0.1 ]); p.play; c.play;
|