Hi,
I’m giving a go to the AKTween library from https://github.com/ArdentKid/AK-Tween and I ran into a problem with corona.
When using translate function with a decimal I end up with a strange value set by Corona.
Because of that, after 100 of translates I end up with object not where I want it to be.
Take a look at this example:
-- obj is a display object obj.x, obj.y = 0, 0 obj.translate(0.02778, 0) print(obj.x) -- this is printed: 0.027780000120401
Why would this 0.000000000120401 be appended?
How can I get rid of it?
This basically makes AK-Tween library useless 
