From 3aa37529b0cf988a941aac156f91acee20cf59e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Prin=C4=8Di=C4=8D?= Date: Mon, 6 Apr 2020 08:15:44 +0200 Subject: [PATCH] init --- ark_d.scd | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ark_d.scd diff --git a/ark_d.scd b/ark_d.scd new file mode 100644 index 0000000..c8054a9 --- /dev/null +++ b/ark_d.scd @@ -0,0 +1,38 @@ +// =========================================================== +// Ark/D, amorphic (2020) +// =========================================================== + + +( +// load libs +Server.default.waitForBoot { + + // library path + var libPath = PathName(thisProcess.nowExecutingPath.dirname +/+ "lib"); + + // for each files in that lib folder + libPath.filesDo({|afile| + // tell me what you're executing: + postln(" ." + afile.fileName); + + // execute it: + this.executeFile(afile.fullPath); + }); +}); + +( +SynthDef("sawM", { + +}).play; +); + + +// load samples + + + +// load busses + + + +// load patterns \ No newline at end of file