init
commit
3aa37529b0
|
@ -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
|
Loading…
Reference in New Issue