FreeSelf:
Filter:
Description
Class methods
kr
Inherited class methods
Instance methods
Inherited instance methods
Undocumented instance methods
canFreeSynth
Examples
Classes
|
UGens
>
Synth control
FreeSelf
:
UGen
:
AbstractFunction
:
Object
When triggered, free enclosing synth.
Source:
EnvGen.sc
See also:
PauseSelf
,
Free
Description
Free enclosing synth when input signal crosses from non-positive to positive.
Class Methods
FreeSelf.
kr
(
in
)
Arguments:
in
The input signal.
Inherited class methods
Instance Methods
Inherited instance methods
Undocumented instance methods
.
canFreeSynth
From extension in
/usr/local/share/SuperCollider/SCClassLibrary/Common/Audio/canFreeSynth.sc
Examples
( SynthDef("freeSelf-help", { arg out, t_trig; FreeSelf.kr(t_trig); Out.ar(out, SinOsc.ar(400,0,0.2)); }).add; ) s.sendMsg("/s_new", "freeSelf-help", 1731); s.sendMsg("/n_set", 1731, \t_trig, 1); // a single impulse SynthDef: ( SynthDef("dirac", { arg out, amp=0.1; var u; u = Impulse.ar(1); FreeSelf.kr(u); Out.ar(out, u * amp); // multiply by amp after using for release, so amp = 0 // doesn't cause synth buildup. }).add; ) ( Task { loop({ fork { exprand(34, 156).do {|i| i = i + 1; s.sendMsg("/s_new", "dirac", -1,0,0, \amp, 1 / i); (0.006 * i).wait; }; }; 1.wait; }) } .play; )
helpfile source:
/usr/local/share/SuperCollider/HelpSource/Classes/FreeSelf.schelp
link::Classes/FreeSelf::