stopAll method

void stopAll ()

Stops all actions currently being run by the controller and removes them.

myNode.actions.stopAll();

Implementation

void stopAll() {
  for (int i = _actions.length - 1; i >= 0; i--) {
    _stopAtIndex(i);
  }
}