-
Notifications
You must be signed in to change notification settings - Fork 0
/
cues.scd
31 lines (28 loc) · 812 Bytes
/
cues.scd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(
var cues = [
"audienceEnters.scd", // 1
"isaJoinsBreath.scd", // 2
"beaverRise.scd", // 3
"isaSolo.scd", // 4
"isaSensorOn.scd", // 5
"darkness.scd", // 6
"heartdialog.scd", // 7
"crunchyImpro.scd", // 8
"swirl.scd", // 9
];
var cuelist = CuePlayer.new;
cues.do{ |item|
var file = PathName.new("~/sc/primemover/cues/"++item).fullPath;
cuelist.add(file);
postf("% added to cuelist\n", file);
};
cuelist.gui(
monitorInChannels: s.options.numInputBusChannels,
monitorOutChannels: s.options.numOutputBusChannels,
options:(
shortcuts:true,
largeDisplay: true,
metronome: false,
)
);
)