Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created February 21, 2020 05:14
Show Gist options
  • Save nicoder/64e9afbe398bc931511a7fee7dd3177d to your computer and use it in GitHub Desktop.
Save nicoder/64e9afbe398bc931511a7fee7dd3177d to your computer and use it in GitHub Desktop.
live_loop :a do
sample :drum_bass_hard
sleep 1
end
live_loop :b do
#sync :a
use_synth :fm
play 48 + (ring 0, 5, 3, 8).stretch(4).tick
sleep 0.5
end
live_loop :c do
#sync :a
with_fx :reverb do
with_fx :echo, mix: (rrand 0, 0.3), phase: 0.16 do
with_fx :krush, gain: rrand(2, 10) do
play (ring 67, 68).stretch(8).tick, release: (rrand 0.15, 0.3), amp: (rrand 0.3, 0.8)
end
end
end
sleep 0.25
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment