Skip to content

Instantly share code, notes, and snippets.

@nicoder
Last active April 10, 2016 04:53
Show Gist options
  • Save nicoder/8e2338fb861f9a270736a31eec8902b8 to your computer and use it in GitHub Desktop.
Save nicoder/8e2338fb861f9a270736a31eec8902b8 to your computer and use it in GitHub Desktop.
live_loop :a do
with_fx :echo, mix: 0.1, phase: 0.33 do
sample :drum_tom_mid_soft, pan: -1, amp: 1
end
with_fx :echo, mix: 0.1, phase: 0.166 do
sample :drum_tom_mid_soft, pan: 1, amp: 1
end
sleep 1
end
live_loop :b do
#sync :a
use_synth :blade
play (ring :a, :b, :c, :r, :a, :b, :r, :a, :r, :a, :b, :r).tick, release: 0.3, cutoff: 70
sleep 0.125
end
live_loop :c do
#sync :a
use_synth :tb303
tick
play (ring :a2, :f2).stretch(4).look, release: 2, cutoff: rrand(60, 70), cutoff_attack: 0.5, cutoff_relase: 0.5
play (ring :e2, :a2).stretch(4).look, release: 2, cutoff: rrand(60, 70), cutoff_attack: 0.5, cutoff_relase: 0.5
sleep 2
end
live_loop :d do
#sync :a
sleep 0.5
sample :drum_bass_soft
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment