stopAll method
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);
}
}
Stops all actions currently being run by the controller and removes them.
myNode.actions.stopAll();
void stopAll() {
for (int i = _actions.length - 1; i >= 0; i--) {
_stopAtIndex(i);
}
}