Example #1
0
        public static new CCEaseExponentialOut actionWithAction(CCActionInterval pAction)
        {
            CCEaseExponentialOut cCEaseExponentialOut = new CCEaseExponentialOut();

            if (cCEaseExponentialOut != null)
            {
                cCEaseExponentialOut.initWithAction(pAction);
            }
            return(cCEaseExponentialOut);
        }
Example #2
0
        public override CCObject copyWithZone(CCZone pZone)
        {
            CCEaseExponentialOut cCEaseExponentialOut = null;

            if (pZone == null || pZone.m_pCopyObject == null)
            {
                cCEaseExponentialOut = new CCEaseExponentialOut();
                pZone = new CCZone(cCEaseExponentialOut);
            }
            else
            {
                cCEaseExponentialOut = pZone.m_pCopyObject as CCEaseExponentialOut;
            }
            cCEaseExponentialOut.initWithAction((CCActionInterval)this.m_pOther.copy());
            return(cCEaseExponentialOut);
        }
Example #3
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);
        }
Example #4
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;
        }
        public override object Copy(ICopyable pZone)
        {
            CCEaseExponentialOut pCopy;

            if (pZone != null)
            {
                //in case of being called at sub class
                pCopy = pZone as CCEaseExponentialOut;
            }
            else
            {
                pCopy = new CCEaseExponentialOut();
            }

            pCopy.InitWithAction((CCActionInterval) (m_pOther.Copy()));

            return pCopy;
        }
Example #6
0
        public override CCObject copyWithZone(CCZone pZone)
        {
            CCZone pNewZone            = null;
            CCEaseExponentialOut pCopy = null;

            if (pZone != null && pZone.m_pCopyObject != null)
            {
                //in case of being called at sub class
                pCopy = pZone.m_pCopyObject as CCEaseExponentialOut;
            }
            else
            {
                pCopy = new CCEaseExponentialOut();
                pZone = pNewZone = new CCZone(pCopy);
            }

            pCopy.initWithAction((CCActionInterval)(m_pOther.copy()));

            return(pCopy);
        }
Example #7
0
        public override CCObject copyWithZone(CCZone pZone)
        {
            CCZone pNewZone = null;
            CCEaseExponentialOut pCopy = null;

            if (pZone != null && pZone.m_pCopyObject != null)
            {
                //in case of being called at sub class
                pCopy = pZone.m_pCopyObject as CCEaseExponentialOut;
            }
            else
            {
                pCopy = new CCEaseExponentialOut();
                pZone = pNewZone = new CCZone(pCopy);
            }

            pCopy.initWithAction((CCActionInterval)(m_pOther.copy()));

            return pCopy;
        }
Example #8
0
        public override void OnEnter()
        {
            base.OnEnter();

            var s = CCDirector.SharedDirector.WinSize;

            var move = new CCMoveBy (3, new CCPoint(s.Width - 130, 0));
            var move_back = move.Reverse();

            var move_ease_in = new CCEaseExponentialIn((CCActionInterval) (move.Copy()));
            var move_ease_in_back = move_ease_in.Reverse();

            var move_ease_out = new CCEaseExponentialOut((CCActionInterval) (move.Copy()));
            var move_ease_out_back = move_ease_out.Reverse();

            var delay = new CCDelayTime (0.25f);

            var seq1 = CCSequence.FromActions(move, delay, move_back, (CCFiniteTimeAction) delay.Copy());
            var seq2 = CCSequence.FromActions(move_ease_in, (CCFiniteTimeAction) delay.Copy(), move_ease_in_back, (CCFiniteTimeAction) delay.Copy());
            var seq3 = CCSequence.FromActions(move_ease_out, (CCFiniteTimeAction) delay.Copy(), move_ease_out_back,
                                                (CCFiniteTimeAction) delay.Copy());

            m_grossini.RunAction(new CCRepeatForever (seq1));
            m_tamara.RunAction(new CCRepeatForever (seq2));
            m_kathia.RunAction(new CCRepeatForever (seq3));
        }
 public override CCFiniteTimeAction reverse()
 {
     return(CCEaseExponentialOut.actionWithAction((CCActionInterval)this.m_pOther.reverse()));
 }
 public CCEaseExponentialOut(CCEaseExponentialOut easeExponentialOut)
     : base(easeExponentialOut)
 {
 }
 public static new CCEaseExponentialOut Create(CCActionInterval pAction)
 {
     var pRet = new CCEaseExponentialOut();
     pRet.InitWithAction(pAction);
     return pRet;
 }