-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.lua
97 lines (96 loc) · 1.72 KB
/
globals.lua
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
param = {
timbre = 10,
color = 11,
cutoff = 12,
resonance = 13,
volume = 14,
pan = 15,
attackTime = 20,
decayTime = 21,
attackTime2 = 22,
decayTime2 = 23,
LFORate = 24,
LFODepth = 25,
retriggerSpeed = 26,
retriggerLength = 27,
env1Target = 30,
env1Depth = 31,
env2Target = 32,
env2Depth = 33,
lfo1Target = 34,
retriggerFade = 36,
length = 40,
conditionMode = 42,
conditionData = 43,
delaySend = 44,
reverbSend = 45,
shape = 47
}
shapes = {
csaw=0,
morph=6,
saw_square=12,
sine_triangle=18,
buzz=24,
square_sub=31,
saw_sub=37,
square_sync=43,
saw_sync=49,
triple_saw=56,
triple_square=62,
triple_triangle=68,
triple_sine=74,
triple_ring_mod=81,
saw_swarm=87,
toy=93,
digital_filter_lp=99,
digital_filter_pk=106,
digital_filter_bp=112,
digital_filter_hp=118,
vosim=124,
vowel=131,
vowel_fof=137,
harmonics=143,
fm=149,
feedback_fm=156,
chaotic_feedback_fm=162,
struck_bell=168,
struck_drum=174,
kick=181,
cymbal=187,
snare=193,
wavetables=199,
wave_map=206,
wave_line=212,
wave_paraphonic=218,
filtered_noise=224,
twin_peaks_noise=231,
clocked_noise=237,
granular_cloud=243,
particle_noise=249,
digital_modulaton=256
}
envTarget = {
volume = 0,
timbre = 1,
color = 2,
cutoff = 3,
resonance = 4,
pitch = 5,
pan = 6,
}
lfoTarget = {
volume = 0,
timbre = 1,
color = 2,
cutoff = 3,
resonance = 4,
pitch = 5,
pan = 6,
env1Attack = 7,
env1Decay = 8,
env2Attack = 9,
env2Decay = 10,
env12Attack = 11,
env12Decay = 12,
}