-
-
Save leo424y/d26eecfebcb446834455fa8909c37d48 to your computer and use it in GitHub Desktop.
This file contains 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 :m do | |
sleep 1 | |
end | |
live_loop :a do | |
sync :m | |
sample :ambi_dark_woosh | |
sleep 4 | |
end | |
live_loop :b do | |
sync :m | |
sample :bd_fat | |
end | |
live_loop :c do | |
sync :m | |
sample :elec_blip if one_in 4 | |
end | |
live_loop :d do | |
sync :m | |
sample :ambi_glass_hum | |
sleep rrand_i(3, 5) | |
end | |
live_loop :e do | |
sync :m | |
sample :ambi_glass_rub | |
sleep rrand_i(4, 6) | |
end | |
live_loop :f do | |
sync :m | |
use_synth :tb303 | |
3.times do | |
play (ring 42, 45, 47).stretch(2).tick, release: 0.1, cutoff: rrand(50, 70) | |
sleep 0.16 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment