Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created February 20, 2020 04:07
Show Gist options
  • Save nicoder/b7dd68cfea32b4ffaf6688e77f152961 to your computer and use it in GitHub Desktop.
Save nicoder/b7dd68cfea32b4ffaf6688e77f152961 to your computer and use it in GitHub Desktop.
with_fx :echo do
live_audio :in, amp: 10
end
use_synth :dull_bell
live_loop :a do
play 45
sleep 1
end
live_loop :b do
sync :a
sleep (ring 0.3, 0.4).tick
play 45 + (ring 3, 5, 7, 9).look
end
live_loop :c do
sync :a
sleep 0.5
sample :bd_mehackit
end
live_loop :d do
sync :a
use_synth :dtri
with_fx :reverb do
play 45 + 12, release: (rrand 1.5, 3), amp: (rrand 0.2, 0.6), pan: (rrand -1, 1)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment