git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8533 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
@@ -160,7 +160,7 @@ public class MotionTrack extends AbstractCinematicEvent implements Control {
if (isControl) {
if (playState == PlayState.Playing) {
- time = (elapsedTimePause + timer.getTimeInSeconds()) * speed;
+ time = (elapsedTimePause + timer.getTimeInSeconds() - start) * speed;
onUpdate(tpf);
if (time >= initialDuration && loopMode == loopMode.DontLoop) {
stop();