Hi all,
I’m trying to implement a rotary slider that functions like a wheel rather than a knob. I would like it for it to be able to take values between -infinity and infinity. In other words, it should spin continuously until the user decides to stop and it should take on larger and larger negative numbers, or larger and larger positive numbers.
As it stands, it implements a range of 0.00 to 9.99. Negative values are effectively mod 10.00, as are positive numbers. If I rotate it counter clockwise, the numbers descend until 0.00, then jump to 9.99 and continue descending.
Is there a way to implement a rotary slider that can go continuously negative and positive?
Thanks in advance.