getActionByTag() public method

public getActionByTag ( int aTag, System target ) : CCAction
aTag int
target System
return CCAction
Esempio n. 1
0
 /** Gets an action from the running action list given its tag
  * @since v0.7.1
  * @return the Action the with the given tag
  */
 public CCAction getActionByTag(int aTag)
 {
     NSUtils.Assert(aTag != CCAction.kCCActionTagInvalid, "Invalid tag");
     return(_actionManager.getActionByTag(aTag, this));
 }