Smooth modulator with .getCurrentLevel();
-
Is there a way to smooth modulation data when using...?
var lfoval = LFORouterGainMod.getCurrentLevel();
I'm using it to route LFO to a few destinations in an FX plugin but even when I set the timer to a really low value, it still is a little steppy.
-
@tomekslesicki said in Smooth modulator with .getCurrentLevel();:
Is there a way to smooth modulation data when using...?
var lfoval = LFORouterGainMod.getCurrentLevel();
I'm using it to route LFO to a few destinations in an FX plugin but even when I set the timer to a really low value, it still is a little steppy.
well off the top of my head you could average the last few values....
-
@Lindon tell me more :-)
-
@tomekslesicki in your timer call back:
instead of using the LFO value - add the LFO value to an array (of say 5 values) and us the average of these 5 values
Might work - might not but its pretty simple to build and try...