Created
February 26, 2020 03:37
-
-
Save nicoder/53107a0fdd360c2ebf4a278e9f41cdc9 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
use_synth :dsaw | |
live_loop :a do | |
play 50, cutoff: 50, release: 1.5, pan: -0.2 | |
play 50 - (ring 5, 7).stretch(8).tick, cutoff: 50, release: 1.5, pan: -0.2 | |
sleep 1 | |
end | |
notes = scale(50 + 12, :major, num_octaves: 2).shuffle.stretch(16) | |
live_loop :b do | |
#sync :a | |
use_synth :dsaw | |
play notes.tick, cutoff: line(40, 60, steps: 20).look, release: 1, pan: 0.3 | |
sleep 0.25 | |
end | |
live_loop :c do | |
sync :a | |
sleep 0.5 | |
sample :drum_snare_soft | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment