Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created December 23, 2016 04:57
Show Gist options
  • Save nicoder/6367db01c6255f8baa391ef148415b79 to your computer and use it in GitHub Desktop.
Save nicoder/6367db01c6255f8baa391ef148415b79 to your computer and use it in GitHub Desktop.
live_loop :a do
play (ring 72, 70, 75, 69).tick
sleep (ring 0.5, 1, 0.25, 0.5).look
end
live_loop :b do
sync :a
sample :bd_haus
sample :bd_haus, pan = [-1, 1].choose
end
live_loop :c do
sync :a
sleep 0.25
with_fx :reverb do
sample :drum_cymbal_closed
end
end
live_loop :d do
sync :a
use_synth :piano
with_fx :echo do
play_chord chord(60, :diminished7), release: 2, amp: 3
end
sleep 2
end
live_loop :e do
sync :a
use_synth :fm
play (ring 48, 50, 52, 55).tick
sleep 0.25
end
live_loop :f do
sync :a
use_synth :fm
8.times do
play 48, release: 0.3
sleep 0.25
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment