Hmm - this synth behaves exactly the same for me if I delete the first node and first time value. I wonder if this was a bug in an older version of EnvGen that has since been fixed? There were some VERY subtle issues that have been fixed in the last few years…
(
SynthDef(\env, {
var envSpec = Env.new([0, 1, 0], [1, 0], 10);
//var envSpec = Env.new([0, 0, 1, 0], [0, 1, 0], 10);
Out.ar(
\out.kr,
WhiteNoise.ar * envSpec.kr(gate:\trig.tr)
)
}).add;
Pdef(\env, Pmono(
\env,
\dur, 1, \trig, 1,
)).play
)