Open
Description
I have observed strange behaviour when applying FX to the :tech_saws
synth. See the below example:
live_loop :test do
#with_fx :reverb, room: 1 do
with_fx :rlpf, cutoff: 60, mix: 1 do
synth :tech_saws, note: :c4, sustain: 4, release: 0
end
#end
sleep 4
end
Running the above as-is seems to play the synth as if the :rlpf
FX has no effect the first time round the loop. All subsequent iterations seem to have rlpf applied.
Similarly, if I run the above with the :reverb
FX uncommented, I also get some unexpected results. The rlpf seems to be applied immediately, but there are gaps near the end of each loop iteration where the synth seems to be unfiltered.
This happens both with v3.0.1 on Mac, and the latest Windows beta 5, so it might not be a new problem.