You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
464 B
Plaintext
25 lines
464 B
Plaintext
(
|
|
// MAIN LAUNCH (loads necessary files and definitions)
|
|
|
|
var appEnvironment;
|
|
|
|
//push new environment
|
|
appEnvironment = Environment.make;
|
|
appEnvironment.push;
|
|
|
|
s.waitForBoot({
|
|
|
|
c = Condition.new;
|
|
|
|
// load all files
|
|
"seeds_and_ledgers_backend.scd".loadRelative;
|
|
"seeds_and_ledgers_transcriber.scd".loadRelative;
|
|
"seeds_and_ledgers_synthdefs.scd".loadRelative;
|
|
s.sync(c);
|
|
"seeds_and_ledgers_mixer.scd".loadRelative;
|
|
|
|
"ready".postln;
|
|
});
|
|
appEnvironment.pop;
|
|
)
|