Created
March 1, 2020 04:25
-
-
Save nicoder/dca811946c6248d2e29cf197550d09d6 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
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