Created
March 26, 2020 03:54
-
-
Save nicoder/321b69e708de3d8262251d2948e47f1d 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 | |
use_synth :chipnoise | |
with_fx :echo, mix: (ring 0, 1).tick do | |
play 48, release: 0.2 | |
end | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
use_synth :chipbass | |
play octs(48 - 12, 2).tick, release: 0.3 | |
end | |
live_loop :c do | |
sync :a | |
use_synth :chiplead | |
sleep 0.3 | |
play 60, release: 0.3 | |
play (ring 63, 62, 65, 63).stretch(4).tick, release: 0.3 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment