Why does this error occurs? (Weird Knob Stepsize)
-
All knobs works except this one for some reason. Even if I put it to 0.1 it will revert back to that and display the weird numbers, any idea to why it occurs?
-
@Gab
What Parameter are you controlling with this knob? Do you have a snippet? -
@Gab you have 101 steps in your knob, so at some point you get uneven values, this happens a lot especially in script nodes
-
@Morphoice
This should only have an effect on the display of the filmstrip and should not actually affect the value of the button, if I am not mistaken. -
@Oli-Ullmann ah okay
-
@Oli-Ullmann Sorry for the late reply, this is an hardcoded fx so a snippet wouldn't do much but it's the feedback on a Faust Flanger. maybe it could be with how i've set the step in the scriptnodes?
-
@Gab Be sure to set your
stepSize
to 0.1 or 0.01Also in the label/localLAF of the knob, you can use
Engine.doubleToString()
to round the value you display to a fix number of digit -
-
@ustk @HISEnberg Yes that was my next option, thanks guys!
-
@HISEnberg My guess is that it might be loss in conversions between float and double precision