stopFading method

dynamic stopFading()

Implementation

stopFading() {
  var weightInterpolant = _weightInterpolant;

  if (weightInterpolant != null) {
    _weightInterpolant = null;
    mixer.takeBackControlInterpolant(weightInterpolant);
  }

  return this;
}