Skip to content

Instantly share code, notes, and snippets.

@severak
Created October 11, 2016 22:33
Show Gist options
  • Save severak/00457e288e24dedb1954daa9870c6f43 to your computer and use it in GitHub Desktop.
Save severak/00457e288e24dedb1954daa9870c6f43 to your computer and use it in GitHub Desktop.
# 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