stopWarping method

dynamic stopWarping()

Implementation

stopWarping() {
  var timeScaleInterpolant = _timeScaleInterpolant;

  if (timeScaleInterpolant != null) {
    _timeScaleInterpolant = null;
    _mixer._takeBackControlInterpolant(timeScaleInterpolant);
  }

  return this;
}