From 0757450648fa868f63f5454f2ca9589514aa73f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=27=C3=A9lectron=20rare?= <108685187+electron-rare@users.noreply.github.com> Date: Sat, 27 Jun 2026 16:03:04 +0200 Subject: [PATCH] feat(sound): boot data-only to body-play scene The data-only boot started the \all scene (all data-web scenes). Boot directly to \play (body-play) so a body-play session has no data-web synths at startup. \all and the individual data scenes remain available via /control/doScene . --- sound_algo/data_only/boot.scd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sound_algo/data_only/boot.scd b/sound_algo/data_only/boot.scd index 41a1b91..b69aa3c 100644 --- a/sound_algo/data_only/boot.scd +++ b/sound_algo/data_only/boot.scd @@ -10,7 +10,7 @@ // 4. Charge synthdefs.scd (10 SynthDefs \\do_*) // 5. Charge control/data_feeds.scd (OSCdef /data/* + ~feeds) // 6. Charge scenes.scd (9 scenes + selecteur ~doScene) -// 7. Lance la scene \\all +// 7. Lance la scene \\play (body-play ; \\all et data-web via /control/doScene) // // Usage standalone : // sclang /chemin/AV-Live/sound_algo/data_only/boot.scd @@ -164,8 +164,8 @@ Routine({ if(~doScene.isNil) { "[data-only/boot] ERREUR : ~doScene non defini".warn; } { - "[data-only/boot] starting scene \\all".postln; - ~doScene.(\all); + "[data-only/boot] starting scene \\play (body-play)".postln; + ~doScene.(\play); }; "".postln;