getActionByTag() публичный Метод

public getActionByTag ( int aTag, System target ) : CCAction
aTag int
target System
Результат CCAction
Пример #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));
 }