Пример #1
0
        public static new CCEaseExponentialOut actionWithAction(CCActionInterval pAction)
        {
            CCEaseExponentialOut cCEaseExponentialOut = new CCEaseExponentialOut();

            if (cCEaseExponentialOut != null)
            {
                cCEaseExponentialOut.initWithAction(pAction);
            }
            return(cCEaseExponentialOut);
        }
Пример #2
0
        /// <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);
        }
Пример #3
0
        /// <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;
        }