CCRotate设置CCW或CW

时间:2012-10-08 09:59:09

标签: cocos2d-iphone

标题很明确。如何设置使用CCRotateTo旋转CCSprite的方向?

即。旋转CCW或CW

3 个答案:

答案 0 :(得分:0)

我认为,你可以管理它的唯一方法是从当前角度设置正偏移或负偏移。

答案 1 :(得分:0)

您可以使用CCRotateBy代替。然后根据所需方向设置正偏移或负偏移。 CCRotateTo采取壁橱方向

答案 2 :(得分:0)

试试这个:

sprite.rotation = 0;
//CW
[sprite runAction:[CCRotateTo actionWithDuration:2.0 angle:360]];
//CCW
[sprite runAction:[CCRotateTo actionWithDuration:2.0 angle:-360]];