Inheritance: CCActionInterval
Example #1
0
		protected override CCAction reverseImpl ()
		{
			CCRotateTo act = new CCRotateTo (_duration, -_dstAngle);
			return act;
		}
Example #2
0
        protected override CCAction reverseImpl()
        {
            CCRotateTo act = new CCRotateTo(_duration, -_dstAngle);

            return(act);
        }
Example #3
0
		protected override CCAction copyImpl ()
		{
			CCRotateTo act = new CCRotateTo (this.duration, _dstAngle);
			return act;
		}
Example #4
0
        protected override CCAction copyImpl()
        {
            CCRotateTo act = new CCRotateTo(this.duration, _dstAngle);

            return(act);
        }