multigrain/main.scd

28 lines
485 B
Plaintext
Raw Normal View History

2022-04-02 06:51:06 +00:00
// Execute this before booting the server
(
2022-04-02 06:51:06 +00:00
Server.default.options.inDevice_("Scarlett 2i2 USB");
Server.default.options.hardwareBufferSize_(1024);
2023-04-02 06:10:23 +00:00
//Server.default.options.outDevice_("Scarlett 2i2 USB");
)
Server.killAll;
2022-04-02 06:51:06 +00:00
(
Routine.run({
("./synths.scd").loadRelative;
Granulator.init(s);
2022-04-02 06:51:06 +00:00
s.sync;
"Synths loaded".postln;
("./control.scd").loadRelative;
("./effects.scd").loadRelative;
("./granulator.scd").loadRelative;
s.sync;
("./interface.scd").loadRelative;
});
)
2023-04-07 06:16:05 +00:00