Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created August 2, 2021 11:05
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/a32edd4a5783ff5ddead2f9ac8fced7a to your computer and use it in GitHub Desktop.
Save nicoder/a32edd4a5783ff5ddead2f9ac8fced7a to your computer and use it in GitHub Desktop.
live_loop :foo do
with_fx [:reverb, :distortion, :echo].choose do
live_audio :voice, amp: 3
end
sleep 8
end
live_loop :a do
sample :drum_bass_soft
sleep 1
end
live_loop :b do
sync :a
sleep 0.5
sample :drum_snare_soft
end
live_loop :c do
sync :a
3.times do
sample :drum_cymbal_pedal, pan: -0.3
sample :drum_cymbal_closed, pan: 0.3
sleep 0.633
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment