main.scd 400 B

1234567891011121314
  1. // Initialize the system
  2. (
  3. s.waitForBoot({
  4. "Initializing Interactive Sound Canvas...".postln;
  5. // Start effects chain
  6. ~startEffectsChain.value;
  7. // System is ready for input
  8. "System ready! Touch data can now be received via OSC.".postln;
  9. "To test the system, run: ~runParameterTest.value".postln;
  10. "To simulate touch input, run: ~runTouchSimulation.value(10)".postln;
  11. });
  12. )