I recently integrated iTween intomy project and purchased the Unity Native addition. I am trying to tween an object along a path and I can do that succesfully by calling
gameObject.MoveTo(iTweenPath.GetPathReversed(path), Time, delay);
But I can’t figure out how to have a callback for when the tween finishes. The documentation on their site shows how to do it using the original iTween code, but not for the native version.
As stated on the support page the iTween native extension does not include every function from the full featured usage. That said I would recommend you simply fire off your callback as a delayed Invoke at the same duration as the tween.