Hi,
I had a script that was increasing the x value of a vector3 variable or for that matter a color variable, like this:
var counter = Vector3(0,0,0)
func _physics_process(delta):
counter.x+=0.01
print(counter)
the result I got from the print was ok until 0.83 then inaccuracy started, see the print result bellow:
(0.81, 0, 0)
(0.82, 0, 0)
(0.83, 0, 0)
(0.839999, 0, 0)
(0.849999, 0, 0)
(0.859999, 0, 0)
(0.869999, 0, 0)
(0.879999, 0, 0)
(0.889999, 0, 0)
(0.899999, 0, 0)
Some bug or what?