Created
March 28, 2016 07:30
-
-
Save nicoder/3192b7a71d706d956cb6 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 | |
use_synth :blade | |
play 84, attack: 0.5, release: 2, amp: 0.5 | |
sleep 2 | |
end | |
live_loop :b do | |
#sync :a | |
play chord(60).choose, release: 2, pan: -0.5 | |
play chord(60).choose, release: 2, pan: 0 | |
play chord(60).choose, release: 2, pan: 0.5 | |
sleep 2 | |
end | |
live_loop :c do | |
# sync :a | |
use_synth :fm | |
play chord(48).choose, release: 0.3 | |
sleep 0.25 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment