Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created March 26, 2020 03:54
Show Gist options
  • Save nicoder/321b69e708de3d8262251d2948e47f1d to your computer and use it in GitHub Desktop.
Save nicoder/321b69e708de3d8262251d2948e47f1d to your computer and use it in GitHub Desktop.
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