标题非常明确。如何设置使用 CCRotateTo 旋转 CCSprite 的方向?
即逆时针或顺时针旋转
我认为,您可以管理它的唯一方法是从当前角度设置正偏移或负偏移。
您可以使用 CCRotateBy 代替 to。然后根据需要的方向设置正偏移或负偏移。CCRotateTo 取壁橱方向
试试这个:
sprite.rotation = 0;
//CW
[sprite runAction:[CCRotateTo actionWithDuration:2.0 angle:360]];
//CCW
[sprite runAction:[CCRotateTo actionWithDuration:2.0 angle:-360]];