Created
February 4, 2017 04:06
-
-
Save nicoder/d89d0d78dbef933f048b20847e4e26f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
live_loop :m do | |
sleep 1 | |
end | |
live_loop :c do | |
sync :m | |
with_fx :reverb, mix: 0.6, pre_mix: 0.5, room: 0.4 do | |
sample :drum_cymbal_open, amp: 1, pan: 0.3 | |
sleep 0.5 | |
sample :drum_cymbal_open, amp: 0.8, pan: 0.3 | |
end | |
end | |
live_loop :k do | |
sync :m | |
with_fx :reverb do | |
sample :drum_bass_hard, amp: 2, pan: 0.1 | |
end | |
sleep 2 | |
end | |
live_loop :k2 do | |
sync :m | |
with_fx :reverb do | |
sleep 0.25 | |
sample :drum_bass_hard, amp: 2 if one_in 3 | |
end | |
sleep 2 | |
end | |
live_loop :cc do | |
sync :k | |
sleep 1 | |
with_fx :echo, mix: 0.2, phase: 0.33, decay: 2.5 do | |
sample :drum_snare_hard, amp: 3, pan: -0.3 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment