Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created March 1, 2020 04:25
Show Gist options
  • Save nicoder/dca811946c6248d2e29cf197550d09d6 to your computer and use it in GitHub Desktop.
Save nicoder/dca811946c6248d2e29cf197550d09d6 to your computer and use it in GitHub Desktop.
use_bpm 180
live_loop :a do
sample (ring :elec_fuzz_tom, :elec_blip).stretch(4).tick
sleep 1
end
live_loop :b do
sync :a
sleep 0.5
sample :elec_blip2 unless one_in 4
end
live_loop :c do
sync :a
sleep 0.25
sample :elec_bell, rate: line(0.8, 1.2).tick, pan: line(-0.5, 0.5).look
end
live_loop :d do
sync :a
sleep 0.75
sample :elec_blup, pan: -1 if one_in 7
end
live_loop :e do
sync :a
sleep 0.75
sample :elec_bong, pan: 1 if one_in 7
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment