Created
March 6, 2020 04:07
-
-
Save nicoder/1e44a090cc5c6c868beddb282e9725f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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