Open
Description
SynthDef(\question3, { |out, gate = 1, amp = 0.1|
var eg = EnvGen.kr(Env.asr(0.01, 1, 0.1), gate, doneAction: 2);
var sig = LPF.ar(DPW3Tri.ar(110), 8000);
Out.ar(out, (sig * amp * eg).dup);
}).add;
Note that the signal is subject to attenuation from an envelope for the first 10 ms, but still an out-of-range peak gets through:
I can use LFTri for today... just reporting.