Last active
February 28, 2023 17:32
-
-
Save dirkmueller/caa0f3bd85e2e61ef704174296b03007 to your computer and use it in GitHub Desktop.
70 rock basic drum loop
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
use_bpm 96 | |
define :snare do | |
sample :drum_snare_hard, amp: 0.6 | |
sample :loop_amen, onset: 6 | |
end | |
define :kick do | |
sample :drum_heavy_kick | |
sample :loop_amen, onset: 0, amp: 0.6 | |
end | |
define :closed_hihat do | |
sample :drum_cymbal_open, amp: 0.1, decay: 0.2 | |
sample :drum_cymbal_closed, amp: 0.5 | |
end | |
live_loop :hats do | |
sync :drums | |
with_fx :reverb, room: rrand(0.1, 0.3) do | |
sample :drum_cymbal_pedal, amp: 0.8 | |
sleep 0.5 | |
closed_hihat | |
sleep 0.5 | |
closed_hihat | |
sleep 0.5 | |
closed_hihat | |
sleep 0.5 | |
end | |
end | |
live_loop :drums do | |
cue :drums | |
with_fx :reverb, room: rrand(0.5, 0.8) do | |
kick | |
sleep 1 | |
snare | |
sleep 1 | |
sleep 0.05 | |
sample :drum_heavy_kick, amp: 0.5 | |
sleep 0.2 | |
kick | |
sleep 0.75 | |
snare | |
sleep 1 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment