Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created March 17, 2020 04:42
Show Gist options
  • Save nicoder/85d9f55f7dc28b568e3ba53674a13edd to your computer and use it in GitHub Desktop.
Save nicoder/85d9f55f7dc28b568e3ba53674a13edd to your computer and use it in GitHub Desktop.
use_bpm 180
live_loop :a do
with_fx :lpf, cutoff: (line 90, 130, steps: 18).tick do
sample :perc_bell
end
sleep 1
end
live_loop :b do
sync :a
sleep 0.5
with_fx :krush, mix: rand do
sample :perc_bell, rate: rrand(0.5, 1.5) if one_in 3
end
end
live_loop :c do
sync :a
sleep 0.25
with_fx :reverb do
with_fx :echo, phase: 0.5, decay: 0.6, mix: rand do
sample :drum_cymbal_closed, amp: (ring 0.5, 0.75).tick
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment