Created
May 18, 2020 19:09
-
-
Save zolon4/ca55b6612377b061e91d4a0a9d145833 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 :hollow | |
with_fx :reverb, mix: 0.8 do | |
with_fx :distortion, distort:0.1 do | |
loop do | |
play choose(scale(:c4, :dorian)), decay: 10 | |
sleep [1, 2, 3].choose | |
end | |
loop do | |
play choose(scale(:c4, :dorian)), attack:5, release: 10, decay: 10 | |
sleep [ 2, 3].choose | |
end | |
loop do | |
play choose(scale(:Cs0, :dorian)), attack:5, release: 10, decay: 10 | |
sleep [ 2, 3].choose | |
end | |
loop do | |
play choose(scale(:c2, :dorian)), attack:5, release: 10, decay: 10 | |
sleep [ 2, 3].choose | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment