Decimal Counting Bug
-
I don’t know how to explain it, but when I there’s a decimal that goes up, there’s a chance that there will be a digit at the very end that counts:
How do I fix this?
-
@the_true_odst This is impossible to fix, the issue is with floats which are known to do this. The only fix I’ve every thought of to this would be to make it so that the real value has it so at 1 it’s stored as 100 so at 0.01 its stored as 1 and will accurately go up as such
-
@tyller_ I think I understand what you said.
I added a money storage variable so it doesn’t glitch out:
-
Another way is to scale it up by 100, round to integers (so get rid of the tiny noise value), then divide it by 100: