Always-on computer music
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
358B

  1. s = Server.local;
  2. s.waitForBoot {
  3. var synth, module;
  4. // Create the synth definition and load it
  5. module = SynthDef.new("module", {
  6. var panner;
  7. var sin = SinOsc.ar(440);
  8. panner = LinPan2.ar(sin, MouseX.kr(-1, 1), 1);
  9. Out.ar(0, panner);
  10. });
  11. module.load(s);
  12. s.sync;
  13. synth = Synth.new("module");
  14. };