Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created March 24, 2019 12:25
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/e27ebd6d21e9739402406cee365ae36e to your computer and use it in GitHub Desktop.
Save nicoder/e27ebd6d21e9739402406cee365ae36e to your computer and use it in GitHub Desktop.
with_fx :echo do
live_audio :in
end
live_loop :a do
sample :bd_haus
sleep 0.5
end
live_loop :b do
sync :a
sleep 0.25
sample (ring :drum_snare_hard, :drum_cymbal_closed).tick
end
live_loop :c do
sync :a
use_synth :fm
with_fx :echo do
play (ring :e2, :a2, :g2, :c3).stretch(2).tick
end
end
live_loop :d do
sync :a
with_fx :flanger, mix: 0.3 do
with_fx :reverb do
with_fx :distortion, distort: 0.7 do
play (ring :b3, :e4).tick, amp: 0.7
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment