Skip to content

Instantly share code, notes, and snippets.

@zolon4
Created May 18, 2020 19:09
Show Gist options
  • Save zolon4/ca55b6612377b061e91d4a0a9d145833 to your computer and use it in GitHub Desktop.
Save zolon4/ca55b6612377b061e91d4a0a9d145833 to your computer and use it in GitHub Desktop.
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