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

            if (cCEaseExponentialIn != null)
            {
                cCEaseExponentialIn.initWithAction(pAction);
            }
            return(cCEaseExponentialIn);
        }
        public override CCObject copyWithZone(CCZone pZone)
        {
            CCEaseExponentialIn cCEaseExponentialIn = null;

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

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

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

            return pCopy;
        }
Example #5
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);
        }
Example #6
0
        public override CCObject copyWithZone(CCZone pZone)
        {
            CCZone pNewZone = null;
            CCEaseExponentialIn pCopy = null;

            if (pZone != null && pZone.m_pCopyObject != null)
            {
                //in case of being called at sub class
                pCopy = pZone.m_pCopyObject as CCEaseExponentialIn;
            }
            else
            {
                pCopy = new CCEaseExponentialIn();
                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;
            CCEaseExponentialIn pCopy = null;

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

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

            return(pCopy);
        }
Example #8
0
 public override CCFiniteTimeAction Reverse()
 {
     return(CCEaseExponentialIn.actionWithAction((CCActionInterval)m_pOther.Reverse()));
 }
Example #9
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 static new CCEaseExponentialIn Create(CCActionInterval pAction)
 {
     var pRet = new CCEaseExponentialIn();
     pRet.InitWithAction(pAction);
     return pRet;
 }
 public CCEaseExponentialIn(CCEaseExponentialIn easeExponentialIn)
     : base(easeExponentialIn)
 {
 }