public static new CCEaseExponentialOut actionWithAction(CCActionInterval pAction) { CCEaseExponentialOut cCEaseExponentialOut = new CCEaseExponentialOut(); if (cCEaseExponentialOut != null) { cCEaseExponentialOut.initWithAction(pAction); } return(cCEaseExponentialOut); }
/// <summary> /// creates the action /// </summary> /// <param name="pAction"></param> /// <returns></returns> public new static CCEaseExponentialOut actionWithAction(CCActionInterval pAction) { CCEaseExponentialOut pRet = new CCEaseExponentialOut(); 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 static new CCEaseExponentialOut actionWithAction(CCActionInterval pAction) { CCEaseExponentialOut pRet = new CCEaseExponentialOut(); if (pRet != null) { if (pRet.initWithAction(pAction)) { //pRet->autorelease(); } else { //CC_SAFE_RELEASE_NULL(pRet); } } return pRet; }