A simple yes or no, followed by any ideas on how would be great for this one. I've been wracking my brain trying to work out a method of animating backwards along a path using MoveTo from the iTween set. Is it even possible? And then secondly, how would you run that path from the present location. Like hitting rewind on a tape?
I was considering using a reverse array command in there somewhere, but then that wouldn't let me pick up where my present location was.
I'm working on something similar though simpler. Are you using the iTweenPath class? if so, are you calling iTween by hand as in iTween.MoveTo(object, iTweenPath.GetPath(myPathName), or how are you doing this? in a nutshell, you'll need to add an option to revert the path, call iTween.StopByName, and then run along a new path with a partial subset of your path.
use pingPong as a loop type
– anon69321326I'm working on something similar though simpler. Are you using the iTweenPath class? if so, are you calling iTween by hand as in iTween.MoveTo(object, iTweenPath.GetPath(myPathName), or how are you doing this? in a nutshell, you'll need to add an option to revert the path, call iTween.StopByName, and then run along a new path with a partial subset of your path.
– anon99297617