stopWarping method

dynamic stopWarping()

Implementation

stopWarping() {
  var timeScaleInterpolant = _timeScaleInterpolant;

  if (timeScaleInterpolant != null) {
    _timeScaleInterpolant = null;
    mixer.takeBackControlInterpolant(timeScaleInterpolant);
  }

  return this;
}