Last active
March 26, 2016 06:23
-
-
Save nicoder/48bcafd7a07e397d3378 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 | |
sample :bd_808 | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
sleep 0.5 | |
sample :bd_gas | |
end | |
live_loop :c do | |
sync :a | |
sleep 0.75 | |
with_fx :panslicer, pulse_width: 0.025 do | |
sample :bd_ada | |
end | |
end | |
live_loop :d do | |
sync :a | |
with_fx :panslicer, phase: 0.5, pulse_width: 0.8, mix: 0.3 do | |
use_synth :tb303 | |
play scale(48, :minor_pentatonic, num_octaves: 2).choose, release: 8, amp: 0.05 | |
sleep 4 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment