Created
December 22, 2019 20:49
-
-
Save nicoder/eefd0b4694a4974598f6c636c3dfb7e4 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
with_fx :echo do | |
live_audio :in, amp: 2 | |
end | |
live_loop :a do | |
use_synth :hollow | |
with_fx :echo do | |
play 60, release: 0.2 | |
end | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
use_synth :hollow | |
sleep 0.5 | |
(rrand_i 1, 4).times do | |
play scale(60, :aeolian).pick, release: 0.2, pan: (rrand -1, 1) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment