feat(sound): boot data-only to body-play scene
CI build oscope-of / build-check (push) Has been cancelled

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 <name>.
This commit is contained in:
L'électron rare
2026-06-27 16:03:04 +02:00
parent 3314b58b69
commit 0757450648
+3 -3
View File
@@ -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;