actions property
The ActionController associated with this node.
myNode.actions.run(myAction);
Implementation
ActionController get actions {
if (_actions == null) {
_actions = new ActionController();
if (_spriteBox != null) _spriteBox._actionControllers = null;
}
return _actions;
}