Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created February 25, 2017 04:45
Show Gist options
  • Save nicoder/cb6bfa26159b4e5d52dc45295a271f80 to your computer and use it in GitHub Desktop.
Save nicoder/cb6bfa26159b4e5d52dc45295a271f80 to your computer and use it in GitHub Desktop.
live_loop :m do
cue :m1
cue [:m2, :m3].choose
sleep 1
end
live_loop :a do
sync :m1
play 60
with_fx :slicer, phase: 0.33 do
play 72, release: 1.2
end
end
live_loop :b do
sync :m2
play 67
end
live_loop :c do
sync :m3
play 65
end
live_loop :bass_b do
sync :b
3.times do
play 45, release: 0.3, amp: 2
sleep 0.33
end
end
live_loop :bass_c do
sync :c
use_synth :fm
2.times do
play 43, release: 0.5, amp: 2
sleep 0.5
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment