- Изменено
Hello!
I'm using the C++ runtime, and I'm trying to force an animation to play in 3 parts; an intro, a loop, and an outro. I use events to mark where the loop begins and ends, and I've tried two things to manually force the loop:
1) Using track time
- when the loop-begin event hits, capture the event time
- when the loop-end event hits, call trackEntry->setTrackTime using the loop-begin event's time
2) Using animation start/end
- when the loop-begin event hits, call trackEntry->setAnimationStart to the event's time
- when loop-end event hits, call trackEntry->setAnimationEnd to the event's time
- call trackEntry->setLoop appropriately
Neither of those approaches have worked for me. The animation either stops or jumps unexpectedly. I assume some other internal data needs to be updated, but I don't know what (_trackLast? _nextTrackLast? something else?). I've also tried running a full update pass (animationState->update, animationState->apply, skeleton->updateWorldTransform) following the changes, but that didn't seem to help.
Please help.
Thank you.