void stop(Action action)

Stops an action and removes it from the controller.

myNode.actions.stop(myAction);

Source

void stop(Action action) {
  if (_actions.remove(action)) {
    action._added = false;
    action._reset();
  }
}