2 summary:: singleton fade envelope
3 categories:: Libraries>JITLib>NodeProxy
4 related:: Classes/EnvGen
7 Convenience class for an envelope generator combining fadeTime and gate arguments.
12 Returns an link::Classes/EnvGen::.
15 initial level of envelope (if set to 1, it starts open)
18 a gate input. if nil, EnvGate creates a link::Classes/NamedControl:: named 'gate'
21 an input for both attack and decay time. if nil, EnvGate creates a link::Classes/NamedControl:: named 'fadeTime' (default time: 0.02)
24 doneAction of the link::Classes/EnvGen::
32 a = { LPF.ar(Saw.ar(200), 600) * EnvGate.new }.play;
39 // several env gates can coexist in one synth def.
42 var sound1 = LPF.ar(Saw.ar(80), 600) * EnvGate.new;
43 var sound2 = RLPF.ar(Saw.ar(200) * 0.5, 6000 * EnvGate.new + 60, 0.1) * EnvGate.new;