Skip to content

Instantly share code, notes, and snippets.

@broo0ose
Created October 22, 2015 17:31
Show Gist options
  • Save broo0ose/1f3cfdd6c9f353b96816 to your computer and use it in GitHub Desktop.
Save broo0ose/1f3cfdd6c9f353b96816 to your computer and use it in GitHub Desktop.
in_thread do
loop do
sample :drum_heavy_kick
sleep 0.5
end
end
in_thread do
loop do
sleep 0.5
use_synth :blade
play :C3, release: 0.5
sleep 0.25
play :C3, release: 0.5
sleep 0.5
play :Eb3, release: 0.5
sleep 0.5
play :C3, release: 0.5
sleep 0.5
play :Gs2, release: 0.5
sleep 0.75
play :G2, release: 0.5
sleep 0.25
play :G2, release: 0.5
sleep 0.25
play :Bb3, release: 0.5
sleep 0.25
play :C3, release: 0.5
sleep 0.25
end
end
loop do
with_fx :reverb do
use_synth :prophet
sample :drum_bass_hard, amp: 5
play :C3, release: 0.3
sleep 0.5
play :C3, release: 0.3
sleep 0.5
play :Eb3, release: 0.3
sleep 0.5
play :C3, release: 0.3
sleep 0.5
play :Gs2, release: 0.3
sleep 0.5
play :Gs2, release: 0.3
sleep 0.5
play :G2, release: 0.3
sleep 0.5
play :As2, release: 0.3
sleep 0.5
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment