Created
March 22, 2020 07:44
-
-
Save nicoder/136e184f2c6ea92c5a0a696c1936ec41 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
live_loop :a do | |
sample :drum_bass_soft | |
sleep 2 | |
end | |
live_loop :b do | |
sync :a | |
sleep 1 | |
sample :drum_snare_soft | |
end | |
live_loop :c do | |
sync :a | |
with_fx :echo, phase: 0.25, decay: 0.5, mix: rand do | |
with_fx :echo, phase: 1 do | |
sleep 0.5 | |
sample :drum_cymbal_pedal | |
end | |
end | |
end | |
live_loop :d do | |
sync :a | |
use_synth :fm | |
3.times do | |
play (ring 48, 47, 45).tick | |
sleep 0.75 | |
end | |
end | |
live_loop :e do | |
sync :a | |
use_synth :pluck | |
with_fx :krush do | |
play chord(:a, :minor), release: 1.2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment