Created
November 1, 2021 11:40
-
-
Save nicoder/daaada2ba66b3415bc1ff152d71c3c2a 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
use_synth :pluck | |
live_loop :a do | |
with_fx :echo, mix: rrand(0, 1) do | |
play 60 - 12, pan: rrand(-1, -0.75) | |
play 60 - 24, pan: rrand(0.75, 1) | |
play 60 - 36, amp: rrand(0, 0.5) if one_in 2 | |
play 60, pan: rrand(-0.5, 0) | |
end | |
with_fx :echo do | |
play 72 + (ring 0, 2, 3, 2).tick, pan: rrand(0, 0.5), amp: rrand(1, 2) | |
end | |
sleep 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment