jhow77 I want the ability to start an animation xyz, but sometimes I'd like to start xyz in the middle of the animation instead of at the beginning. Is there a way to do this? Thanks!
Pharan There is. After you setAnimation, you get a TrackEntry. Change the time to whatever, in seconds.
BinaryCats Depending on your intent you prob want to set lastTime (or something similar) to that time too. This way events wont fire when they are not expected to. (events fire when there has been an event between the lastTime and current time)
Pharan That's right. This only applies when you have user events. In all other cases, you don't need to change lastTime. But it's definitely something to watch out for.