Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created February 27, 2016 17:53
Show Gist options
  • Save nicoder/357877b4aa1fb395aabb to your computer and use it in GitHub Desktop.
Save nicoder/357877b4aa1fb395aabb to your computer and use it in GitHub Desktop.
live_loop :bass do
use_synth :fm
play ring(40, 40, 40, 42).tick, release: 0.5
sleep 1
end
live_loop :guitar do
sync :bass
use_synth :beep
sleep 0.5
play 52, release: 0.5
play ring(55, 55, 55, 57).tick, release: 0.5
end
live_loop :rhy do
sync :bass
with_fx :echo, decay: 2, phase: 0.67, mix: 0.2 do
with_fx :reverb do
2.times do
sample :drum_cymbal_closed
sleep 0.25
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment