Created
May 20, 2018 06:21
-
-
Save yratof/28b730b921a77de4ec5bb2a2ed3bbd11 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
in_thread do | |
with_fx :gverb, mix: 0.3, dry: 0, room: 150, spread: 1 do | |
live_loop :arp do | |
use_synth :beep | |
play (chord :b3, :add9, num_octaves: 2).shuffle.pick(3).tick(), release: 3, pan: rrand(-1, 1) | |
use_synth :beep | |
play (chord :b2, :add9, num_octaves: 2).shuffle.pick(6).tick(), release: 2, pan: rrand(-1, 1) | |
use_synth :beep | |
play (chord :b4, :add9, num_octaves: 2).shuffle.pick(2).tick(), release: 0.25, amp: 0.125, pan: rrand(-1, 1) | |
sleep 0.125 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment