Created
March 9, 2020 06:35
-
-
Save nicoder/269a4979441e998cbafcf1171f3c1b4a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use_bpm 180 | |
live_loop :a do | |
with_fx :echo, mix: (ring 0, 1).tick do | |
sample :drum_bass_hard | |
end | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
sleep 0.5 | |
sample :drum_snare_hard | |
end | |
live_loop :c do | |
sync :a | |
use_synth :fm | |
with_fx :distortion do | |
play 48, release: 0.2 | |
end | |
end | |
live_loop :d do | |
sync :a | |
use_synth :pluck | |
sleep 0.25 | |
with_fx :reverb do | |
with_fx :slicer, mix: 0.2 do | |
with_fx :krush do | |
with_fx :distortion, distort: 0.8 do | |
play chord(60, :minor), amp: 1, release: 0.2 | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment