Created
March 20, 2020 05:00
-
-
Save nicoder/742d603e70854109b726b958aada7a27 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 :a do | |
sample :elec_blip | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
use_synth :tech_saws | |
play (ring chord(:c, :major), chord(:a3, :minor)).stretch(4).tick, cutoff: 50 | |
end | |
live_loop :c do | |
#sync :a | |
use_synth :prophet | |
n = (ring 72, 76, 76).look | |
(rrand_i 1, 4).times do | |
with_fx :echo, mix: rrand(0.3, 1) do | |
play n, release: 0.4, cutoff: (line 50, 80, steps: 8).tick | |
end | |
sleep 0.5 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment