stopAllAction method

AnimationMixer stopAllAction()

Deactivates all previously scheduled actions on this mixer.

Implementation

AnimationMixer stopAllAction() {
  final actions = _actions, nActions = _nActiveActions;

  for (int i = nActions - 1; i >= 0; --i) {
    actions[i].stop();
  }

  return this;
}