Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created March 27, 2020 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicoder/665e4066fe4d7cc465ffe3cc11a11c36 to your computer and use it in GitHub Desktop.
Save nicoder/665e4066fe4d7cc465ffe3cc11a11c36 to your computer and use it in GitHub Desktop.
live_loop :a do
with_fx :echo do
sample :drum_bass_hard
end
sleep 1
end
live_loop :b do
sync :a
sleep 0.5
with_fx :echo, decay: 0.3, mix: (ring 0.1, 1).tick do
sample :drum_snare_hard
end
end
live_loop :c do
sync :a
with_fx :reverb do
with_fx :echo, decay: 3.5 do
sample :drum_cymbal_soft, amp: ring(0.5, 1).tick
end
end
end
live_loop :d do
sync :a
use_synth :tb303
play (ring 48, 45).stretch(4).tick, cutoff: (line 40, 50, steps: 8).look
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment