How can I check whether a SKNode
is already running an action before running an action on it?
I want to be able to do something like...
if (![mySprite isRunningActions]) {
[mySprite runAction:action];
}
If there is no built in way I'm thinking of creating a new BOOL
property for holding the action state.