You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actuate.stop(target, null, true) should apply the final values of the animation (as if it had finished normally). In case of a reverse'ed tween, these should be the original values of the target, but currently the values provided to Actuate.tween are set (the starting values of the animation).
target.x = 10;
Actuate.tween(target, 1, { x: 20 }).reverse();
Actuate.stop(target, null, true);
trace(target.x);
// outputs 20, should be 10
The text was updated successfully, but these errors were encountered:
Actuate.stop(target, null, true)
should apply the final values of the animation (as if it had finished normally). In case of areverse
'ed tween, these should be the original values of the target, but currently the values provided toActuate.tween
are set (the starting values of the animation).The text was updated successfully, but these errors were encountered: