Created
January 1, 2016 13:54
-
-
Save nicoder/4f23cbcbc18da5978144 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
# playing with the new gverb effect in Sonic Pi 2.9 | |
live_loop :one do | |
with_octave rrand_i(-2, 2) do | |
with_fx :gverb do | |
play (ring 60, 60, 65, 60).tick, release: 1, amp: 0.4 | |
sleep 0.5 | |
end | |
end | |
end | |
live_loop :two do | |
sync :one | |
with_fx :gverb do | |
play 48, release: 1 | |
play (ring 69, 68, 67, 67).tick, release: 1.5 | |
sleep 2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment