Bill Orcutt
Bill Orcutt
something weird there, try it with the random voicing patch....
Example.... __(). sampler({ path:"../../Sounds/various/gun-cock.wav", loop:false, speed:0.25, start:0.2, end:0.4 }). dac(); Start point is respected, but not end point.
...not the values present when stop() was called. So... __().sine(500).out().play(); __("sine").frequency(1000); //set frequency to 1000 __("sine").stop(); __("sine").play(); //frequency is now 500 not 1000
Look at changes in Panner module and update as needed.
Share feature that exports a self-contained HTML/JS snippet from a patch window
//create a mono synth and connect to output __().monosynth({id:"m1"}).dac() //change frequency of the lowpass in the mono synth __("monosynth lowpass").frequency(300) //works //try to change frequency of the lowpass in the...