Created
October 11, 2016 22:33
-
-
Save severak/00457e288e24dedb1954daa9870c6f43 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
# ztratila klice | |
with_fx :reverb do | |
live_loop :ztratila do | |
use_synth :prophet | |
play chord(:G, :major), release: 1.5 | |
sleep 1 | |
play chord(:A, :minor) | |
sleep 0.5 | |
play chord(:A, :minor) | |
sleep 0.5 | |
end | |
end | |
live_loop :bbas do | |
use_synth :pulse | |
if one_in(3) | |
puts "noise" | |
play :A, attack: rrand(0.5, 0.2), decay: rrand(0.5, 0), release: 0.4, amp: 0.3 | |
sleep 2 | |
else | |
sleep 1 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment