public static new CCEaseExponentialIn actionWithAction(CCActionInterval pAction) { CCEaseExponentialIn cCEaseExponentialIn = new CCEaseExponentialIn(); if (cCEaseExponentialIn != null) { cCEaseExponentialIn.initWithAction(pAction); } return(cCEaseExponentialIn); }
/// <summary> /// creates the action /// </summary> /// <param name="pAction"></param> /// <returns></returns> public static new CCEaseExponentialIn actionWithAction(CCActionInterval pAction) { CCEaseExponentialIn pRet = new CCEaseExponentialIn(); if (pRet != null) { if (pRet.initWithAction(pAction)) { //pRet->autorelease(); } else { //CC_SAFE_RELEASE_NULL(pRet); } } return pRet; }
/// <summary> /// creates the action /// </summary> /// <param name="pAction"></param> /// <returns></returns> public new static CCEaseExponentialIn actionWithAction(CCActionInterval pAction) { CCEaseExponentialIn pRet = new CCEaseExponentialIn(); if (pRet != null) { if (pRet.initWithAction(pAction)) { //pRet->autorelease(); } else { //CC_SAFE_RELEASE_NULL(pRet); } } return(pRet); }