Inheritance: CCScaleTo
Beispiel #1
0
		protected override CCAction reverseImpl ()
		{
			CCScaleBy act = new CCScaleBy (_duration, 1/_endScaleX, 1/_endScaleY);
			return act;
		}
Beispiel #2
0
        protected override CCAction reverseImpl()
        {
            CCScaleBy act = new CCScaleBy(_duration, 1 / _endScaleX, 1 / _endScaleY);

            return(act);
        }
Beispiel #3
0
		protected override CCAction copyImpl ()
		{
			CCScaleBy act = new CCScaleBy(this.duration, _endScaleX, _endScaleY);
			return act;
		}
Beispiel #4
0
        protected override CCAction copyImpl()
        {
            CCScaleBy act = new CCScaleBy(this.duration, _endScaleX, _endScaleY);

            return(act);
        }