From f05555a10485c996c78d685e0934b28bc7334ade Mon Sep 17 00:00:00 2001 From: Pete Shadbolt Date: Mon, 3 May 2021 21:46:28 -0700 Subject: [PATCH] Rudimentary - work in progress --- audio.scd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio.scd b/audio.scd index f12b58c..ea06eb0 100644 --- a/audio.scd +++ b/audio.scd @@ -34,7 +34,7 @@ s.waitForBoot { // Create multiple sound generators modules = []; - 16.do({ + 3.do({ arg index; var synth; synth = Synth.new("module", [\hue, 0.5, \saturation, 0.1, \value, 0.5, \pan, 0.5, \gain, 0.9]); @@ -49,7 +49,7 @@ s.waitForBoot { modules[msg[1]].set(\saturation, msg[3]); modules[msg[1]].set(\value, msg[4]); modules[msg[1]].set(\pan, msg[5]); - s.sync; + //s.sync; } }; thisProcess.addOSCRecvFunc(f);