-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreeps.rb
More file actions
69 lines (63 loc) · 1.5 KB
/
creeps.rb
File metadata and controls
69 lines (63 loc) · 1.5 KB
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
live_loop :drums do
##| stop
drum_length = 8
drum_rate = 0.1
with_fx :gverb do
with_fx :distortion do
sample :loop_compus, rate: drum_rate, amp: 0.15, pre_amp: 5, beat_stretch: drum_length
sleep drum_length*10
end
end
end
live_loop :drums2 do
##| stop
drum_length = 4
drum_rate = 0.1
with_fx :gverb do
with_fx :distortion do
sample :loop_breakbeat, rate: drum_rate, amp: 0.1, pre_amp: 10, beat_stretch: drum_length
sleep drum_length*10
end
end
end
live_loop :eerie do
drum_length = 4
drum_rate = rrand(0.1, 1)
with_fx :gverb do
with_fx :distortion do
sample :ambi_haunted_hum, rate: drum_rate, amp: 0.15, pre_amp: rrand(1,10), beat_stretch: drum_length
sleep drum_length
end
end
end
live_loop :wat do
drum_length = 4
drum_rate = rrand(0.1, 1)
with_fx :gverb do
with_fx :distortion do
sample :ambi_piano, rate: drum_rate, amp: 0.15, pre_amp: 10, beat_stretch: drum_length
sleep drum_length
end
end
end
live_loop :wat2 do
drum_length = 4
drum_rate = rrand(-0.9, 0.9)
with_fx :gverb do
with_fx :distortion do
sample :ambi_glass_hum, rate: drum_rate, amp: 0.15, pre_amp: 10, beat_stretch: drum_length
sleep drum_length
end
end
end
live_loop :watt do
stop
drum_length = 4
drum_rate = rrand(0.1, 0.3)
with_fx :gverb do
with_fx :distortion do
sample :misc_crow, rate: drum_rate, amp: 0.15, pre_amp: 10, beat_stretch: drum_length
sleep drum_length
end
end
end