| 1234567891011121314151617 |
- // Initialize the system
- (
- s.waitForBoot({
- "Initializing Interactive Sound Canvas...".postln;
- // Start effects chain
- ~startEffectsChain.value;
- // System is ready for input
- "System ready! Touch data can now be received via OSC.".postln;
- "To test the system, run: ~runParameterTest.value".postln;
- "To simulate touch input, run: ~runTouchSimulation.value(10)".postln;
- });
- )
- ~runParameterTest.value
- ~runTouchSimulation.value(10)
|