Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created February 24, 2017 04:01
Show Gist options
  • Save nicoder/627566cfd73fcb2438fe0f9ee149221f to your computer and use it in GitHub Desktop.
Save nicoder/627566cfd73fcb2438fe0f9ee149221f to your computer and use it in GitHub Desktop.
live_loop :m do
sleep 1
end
live_loop :b do
sync :m
sleep 4
end
live_loop :n do
sync :b
4.times do
play (ring 60, 62, 64).stretch(4).tick
sleep 1
end
end
live_loop :bass do
sync :m
use_synth :fm
play 48, release: 1.2
end
live_loop :tb do
sync :b
use_synth :tb303
play (ring 55, 53).tick, release: 4, amp: 0.3, pan: rrand(-0.7, 0.7)
with_fx :slicer, phase: 0.125 do
play 48, release: 4, amp: 0.7, pan: rrand(-0.7, 0.7)
end
sleep 4
end
live_loop :d do
sync :m
with_fx :reverb do
3.times do
sample :drum_cymbal_closed
sleep 0.125
end
sleep 0.125
sample :drum_bass_hard
sleep 0.25
sample :drum_bass_hard
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment