Open
Description
It seems like :hoover
escapes my :lpf
fx somehow (running sonic-pi from latest git):
live_loop :baseline do
use_synth :hoover
with_fx :lpf, cutoff: :c4 do
play :c3, attack: 0, release: 0, sustain: 4
sleep 4
end
end
For the first iteration of the loop :hoover
is not limited by :lpf
but it is applied for the following iterations of the loop. When I want to change the loop definition (ex: the cutoff) then after the change, the next iteration bypasses the :lpf
again.