I have multiple object then when touched, they trigger transition.moveTo in order to move to a specific location.
I want something to trigger once the object reaches that end location, so I am using the param onComplete within my transition.moveTo.
The issue is that when one object finishes the transition, it triggers the onComplete for all of the objects even if they have not reached the end point.
I was thinking that I need to edit my onComplete function and put a condition that can see if the object is still moving or not.
This leads me to my question. when an object is transitioning, is there a linear velocity that is being activated in the background?
I am struggling with finding something to tell if an object transition is still in process.