Created
February 20, 2020 04:07
-
-
Save nicoder/b7dd68cfea32b4ffaf6688e77f152961 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: 10 | |
end | |
use_synth :dull_bell | |
live_loop :a do | |
play 45 | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
sleep (ring 0.3, 0.4).tick | |
play 45 + (ring 3, 5, 7, 9).look | |
end | |
live_loop :c do | |
sync :a | |
sleep 0.5 | |
sample :bd_mehackit | |
end | |
live_loop :d do | |
sync :a | |
use_synth :dtri | |
with_fx :reverb do | |
play 45 + 12, release: (rrand 1.5, 3), amp: (rrand 0.2, 0.6), pan: (rrand -1, 1) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment