ソースを参照

Multiple sound sources

tags/kitchen
コミット
e63af42a5c
1個のファイルの変更13行の追加2行の削除
  1. +13
    -2
      audio.scd

+ 13
- 2
audio.scd ファイルの表示

@@ -1,6 +1,6 @@
s = Server.local;
s.waitForBoot {
var module, sound, msg;
var module, sound, msg, modules;

// Connect to OSC
thisProcess.openUDPPort(5005);
@@ -29,9 +29,20 @@ s.waitForBoot {
});
module.load(s);
s.sync;

modules = [];
modules.add(Synth.new("module", [\hue, 0.5, \saturation, 0.9, \value, 0.5, \pan, 0.5]));
modules.add(Synth.new("module", [\hue, 0.9, \saturation, 0.9, \value, 0.5, \pan, 0.5]));
// Make a sound
sound = Synth.new("module", [\hue, 0.5, \saturation, 0.1, \value, 0.5, \pan, 0.5]);
// modules = [];
// 5.do({
// arg index;
// var synth;
// synth = Synth.new("module", [\hue, 0.5, \saturation, 0.1, \value, 0.5, \pan, 0.5]);
// modules.add(synth);
// });

// Hook up OSC
f = { |msg, time, addr|


読み込み中…
キャンセル
保存