stopWarping method

AnimationAction stopWarping()

Stops any scheduled page:.warp warping which is applied to this action.

This method can be chained.

Implementation

AnimationAction stopWarping() {
  final timeScaleInterpolant = _timeScaleInterpolant;
  if (timeScaleInterpolant != null) {
    _timeScaleInterpolant = null;
    mixer.takeBackControlInterpolant(timeScaleInterpolant);
  }
  return this;
}