↧
Answer by TheRaven
If you want to have an object animate around you will need to do the position changes in the update function instead of the start function. So that the object moves the desired amount during an update...
View ArticleAnswer by fafase
you need to look into coroutine. At the moment, when the while loop starts it performs the whole movement within the Start method, so you don't see the progression only the final result. With a...
View Article