Created
March 15, 2020 04:30
-
-
Save nicoder/1d3c30577d4e32d3b66d3f7fe07becca to your computer and use it in GitHub Desktop.
This file contains 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 :perc_snap | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
sleep 1 | |
sample :perc_door | |
end | |
notes = (ring 0, -3, -2, -5) | |
live_loop :c do | |
sync :a | |
use_synth :tb303 | |
with_fx :echo, phase: 0.5, decay: 0.6, mix: rand do | |
play 48 + notes.tick, release: 0.3, cutoff: line(30, 120, steps: 18).look | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment