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
live_loop :anything do | |
sample :loop_amen, rate: 0.5 | |
sleep 3.5 | |
end |
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
live_loop :anythingyouwnat do | |
play (scale :e3, :minor_pentatonic).tick(:foo), release: 0.1 | |
sleep (ring 0.125, 0.25).tick(:bar) | |
end | |
sleep 8.5 | |
live_loop :anythinguwant do | |
sample :loop_garzul, rate: 0.5, finish: 0.25 | |
sample :loop_industrial, beat_stretch: 4, amp: 1 | |
sleep 4 |
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
sleep 1 | |
sample :drum_snare_soft | |
sleep 0.1 | |
sample :drum_snare_hard | |
sleep 0.3 | |
sample :drum_cymbal_open |
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
live_loop :Pichu do | |
synth :noise, release: 0.02 | |
sleep [0.125, 0.25, 0.5]. choose | |
end | |
live_loop :Pickachu do | |
synth :chipbass, release: 0.25, note: [:f2, :a2, :c3]. choose | |
sleep [0.25, 0.5, 1]. choose | |
end |