Skip to content

Instantly share code, notes, and snippets.

@Widdershin
Created August 28, 2016 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Widdershin/de95c945146ef19a8db4c8315e432f74 to your computer and use it in GitHub Desktop.
Save Widdershin/de95c945146ef19a8db4c8315e432f74 to your computer and use it in GitHub Desktop.
live_loop :drums do
sample :drum_tom_lo_hard
sleep 0.4
end
i = 0
live_loop :woo do
sync :drums
if i % 4 == 0 && i % 40 < 20
sample :bass_thick_c
else
sample :bass_voxy_hit_c
end
if i % 2 == 0 && i % 30 > 10
sample :drum_snare_hard
end
if i % 8 == 0
sample :drum_heavy_kick
sleep 0.2
sample :drum_splash_hard
end
i += 1
end
live_loop :melody do
sync :drums
if i % 60 < 40
use_synth :prophet
else
use_synth :dsaw
end
play 60
sleep 1
play [63, 65]
sleep 0.4
play [63, 65, 67]
sleep 3
play [61, 63, 65]
sleep 1
play [63, 65, 67]
sleep 0.2
play [63, 67]
sleep 2
play [61, 63, 65]
sleep 1
play [63, 65, 67]
sample :drum_tom_lo_hard
sleep 4
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment