↧
Answer by Xtro
This is a common problem when using float numbers. There is no real solution. You have to detect if it reached the destination with a margin of minimum distance. After detection, you have to set the...
View ArticleAnswer by LukaKotar
For problems like this I normally use [Mathf.Clamp()][1] to make sure the value is never greater than the target value (similar process if you are subtracting), then instead of using the...
View Article