You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
581 B
38 lines
581 B
// ===========================================================
|
|
// 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 |