Skip to content

Instantly share code, notes, and snippets.

@lisabaut
Created May 27, 2018 11:53
Show Gist options
  • Save lisabaut/63267cfd245c6650a9bfa06a3d0f88ef to your computer and use it in GitHub Desktop.
Save lisabaut/63267cfd245c6650a9bfa06a3d0f88ef to your computer and use it in GitHub Desktop.
# Run DMC - Walk This Way (Intro Drums)
use_bpm 109
live_loop :hihat do
sample :drum_cymbal_closed, rate: 1, pan: -1
sleep 0.5
end
live_loop :cymbal do
sample :drum_splash_hard, amp: 0.5, pan: 1, rate: 0.6, sustain: 0.4, release: 0.1
sleep 4
end
live_loop :kickdrum do
with_fx :reverb, room: 0.4 do
sample :bd_ada, rate: 0.8
sample :bd_fat, rate: 1.4
sleep 1.75
sample :bd_ada, rate: 0.8
sample :bd_fat, rate: 1.4
sleep 0.25
sample :bd_ada, rate: 0.8
sample :bd_fat, rate: 1.4
sleep 0.5
sample :bd_ada, rate: 0.8
sample :bd_fat, rate: 1.4
sleep 1.5
end
end
live_loop :snare do
with_fx :reverb, room: 0.6 do
sleep 1
sample :sn_dolf
sleep 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment