public static new CCEaseExponentialIn actionWithAction(CCActionInterval pAction)
        {
            CCEaseExponentialIn cCEaseExponentialIn = new CCEaseExponentialIn();

            if (cCEaseExponentialIn != null)
            {
                cCEaseExponentialIn.initWithAction(pAction);
            }
            return(cCEaseExponentialIn);
        }
Esempio n. 2
0
        /// <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;
        }
Esempio n. 3
0
        /// <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);
        }