You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

23 lines
396 B
Plaintext

s.boot;
(
SynthDef.new(\sine, {
arg freq=440, atk=0.005, rel=0.2, amp=1, pan=0;
var sig, env;
sig = SinOsc.ar(freq);
env = EnvGen.kr(Env.new([0,1,0],[atk,rel],[1,-1]),doneAction:2);
sig = Pan2.ar(sig, pan, amp);
sig = sig* env;
Out.ar(0, sig);
}).add;
)
(
p = Pbind(
\instrument, \sine,
\dur, Pseq([0.6, 0.15, 0.15], inf),
\freq, Pseq([330, 247, 370, 220], inf),
).play
)
s.plotTree;