protected override CCAction copyImpl()
        {
            CC3RotateTo act = new CC3RotateTo(this.duration, _dstAngle);

            return(act);
        }
        protected override CCAction reverseImpl()
        {
            CC3RotateTo act = new CC3RotateTo(_duration, -_dstAngle);

            return(act);
        }