Created
March 30, 2020 06:03
-
-
Save nicoder/1cd7432b558330b8ae7cb5bfd0ed9c84 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 :drum_cymbal_closed | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
at [0.5, (ring 0.75, 0.9).tick] do | |
sample :drum_snare_soft | |
end | |
end | |
live_loop :c do | |
sync :a | |
use_synth :zawa | |
c = (line 60, 90, steps: 12).tick | |
at (ring 0.25, 0.33, 0.5), (ring 0, 1, 2) do |i| | |
play 48 - i, release: 0.2, cutoff: c | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment