예제 #1
0
        public static new CCEaseBackOut actionWithAction(CCActionInterval pAction)
        {
            CCEaseBackOut cCEaseBackOut = new CCEaseBackOut();

            if (cCEaseBackOut != null)
            {
                cCEaseBackOut.initWithAction(pAction);
            }
            return(cCEaseBackOut);
        }
예제 #2
0
        /// <summary>
        /// creates the action
        /// </summary>
        /// <param name="pAction"></param>
        /// <returns></returns>
        public new static CCEaseBackOut actionWithAction(CCActionInterval pAction)
        {
            CCEaseBackOut pRet = new CCEaseBackOut();

            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 CCEaseBackOut actionWithAction(CCActionInterval pAction)
        {
            CCEaseBackOut pRet = new CCEaseBackOut();

            if (pRet != null)
            {
                if (pRet.initWithAction(pAction))
                {
                    //pRet->autorelease();
                }
                else
                {
                    //CC_SAFE_RELEASE_NULL(pRet);
                }
            }

            return pRet;
        }