Created
March 9, 2017 03:59
-
-
Save nicoder/5bb0dfd8ad66660b65f2624e4e68734f 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 :m do | |
sleep 1 | |
end | |
live_loop :a do | |
sync :m | |
with_fx :slicer do | |
play (ring 42, 40).stretch(2).tick, release: 2 | |
end | |
end | |
live_loop :b do | |
sync :m | |
with_fx :slicer do | |
play 54, release: 4 | |
play 61, release: 4, amp: 0.6 unless one_in 3 | |
end | |
end | |
live_loop :c do | |
sync :m | |
with_fx :echo, mix: 0.1, phase: 0.33 do | |
sample :elec_twip, rate: [1, -1].choose | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment