Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: first steps with NamedControl
name
code content
( SynthDef.new(\syn2, { var sig, env; env = Env.adsr(0.01, 0.3, 0.6, 1).kr(2, \gate.kr(1)); sig = SinOsc.ar(\freq.kr([440, 439, 441, 220, 219],\freqlag.kr(2)), 0, 0.8); sig = Splay.ar(sig, 0.8); sig = sig * env * \amp.kr(0.15); Out.ar(\out.kr(0), sig) }).add; ) y = Synth.new(\syn2); y.set(\freq, [220, 280, 330, 439]) y.set(\freqlag, 1.2) // execute the following in any order you like... y.set(\freq, [110, 165, 220, 330, 440]) y.set(\freq, [100, 150, 175, 200, 300]) y.set(\freq, [80, 120, 160, 200, 220]) y.set(\freqlag, 4) y.set(\gate, 0);
code description
my first experiment with NamedControl shorthand notation.
use markdown for formating
category tags
comma separated, i.g. "wild, siren" (do not enter default SC class names, please)
ancestor(s)
comma separated identificators, i.g. "1-C,1-1,1-4M,1-x"
Private?
the code will be accessible by direct url and not visible in public activity
signup to submit public code without captcha
comment of change