Last active
December 23, 2019 10:22
-
-
Save nicoder/d8e793f1eb8bc431ee8bbdff395e6fb1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
with_fx :echo do | |
live_audio :in, amp: 3 | |
end | |
live_loop :a do | |
sample :bd_mehackit, amp: (rrand 1, 2) | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
use_synth :chipbass | |
3.times do | |
with_fx :krush, mix: (ring 0, 1).tick do | |
play 48, release: 0.2 | |
end | |
sleep 0.32 | |
end | |
end | |
live_loop :c do | |
sync :a | |
use_synth :chiplead | |
with_fx :reverb do | |
with_fx :echo, phase: 0.166 do | |
2.times do | |
play scale(60, :ahirbhairav).pick, release: 0.2, pan: (ring -1, 1).tick | |
end | |
end | |
end | |
end | |
live_loop :d do | |
sync :a | |
sleep 0.5 | |
sample :drum_snare_soft, amp: rrand(1, 2) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment