stop method
Stops an action
and removes it from the controller.
myNode.actions.stop(myAction);
Implementation
void stop(Action action) {
if (_actions.remove(action)) {
action._added = false;
action._reset();
}
}
Stops an action
and removes it from the controller.
myNode.actions.stop(myAction);
void stop(Action action) {
if (_actions.remove(action)) {
action._added = false;
action._reset();
}
}