Created
April 30, 2017 18:36
-
-
Save x37v/77e643557a02a41616ca5bb2eb426741 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
s = Server.default.boot; | |
( | |
SynthDef(\blah, { |out = 0, gate = 1| | |
Out.ar(out, SinOsc.ar(423) * EnvGen.ar(Env.adsr, gate), 0); | |
}).add; | |
) | |
x = Synth.new(\blah); | |
x.set(\gate, 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment