Created
February 27, 2016 17:53
-
-
Save nicoder/357877b4aa1fb395aabb 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 :bass do | |
use_synth :fm | |
play ring(40, 40, 40, 42).tick, release: 0.5 | |
sleep 1 | |
end | |
live_loop :guitar do | |
sync :bass | |
use_synth :beep | |
sleep 0.5 | |
play 52, release: 0.5 | |
play ring(55, 55, 55, 57).tick, release: 0.5 | |
end | |
live_loop :rhy do | |
sync :bass | |
with_fx :echo, decay: 2, phase: 0.67, mix: 0.2 do | |
with_fx :reverb do | |
2.times do | |
sample :drum_cymbal_closed | |
sleep 0.25 | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment