Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created March 6, 2020 04:07
Show Gist options
  • Save nicoder/1e44a090cc5c6c868beddb282e9725f0 to your computer and use it in GitHub Desktop.
Save nicoder/1e44a090cc5c6c868beddb282e9725f0 to your computer and use it in GitHub Desktop.
live_loop :a do
with_fx :echo, decay: 0.25, mix: rrand_i(0, 1) do
sample :bd_zome
end
sleep 1
end
live_loop :b do
sync :a
sleep 0.5
sample :sn_zome
end
live_loop :c do
sync :a
with_fx :echo, phase: 0.25 do
sample :drum_cymbal_closed
end
end
live_loop :d do
sync :a
sleep 0.25
with_fx :echo, phase: 0.5 do
sample :drum_cymbal_soft if one_in 2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment