gpt4 book ai didi

ios - 围绕 anchor 旋转 Sprite

转载 作者:行者123 更新时间:2023-11-29 04:42:10 26 4
gpt4 key购买 nike

我有一个 Sprite :

ombreoeuf1 = [CCSprite spriteWithFile:@"mangeurcentremieu3_03.png" ];
ombreoeuf1.position = ccp(240,160);
[self addChild:ombreoeuf1];

我想围绕一个 anchor 不断旋转它。我该怎么做?

最佳答案

可以先通过设置属性anchorPoint来设置 anchor ,例如:

[ombreoeuf1 setAnchorPoint:ccp(0,0)]

然后通过设置另一个属性rotation来设置旋转(以度为单位):

[ombreoeuf1 setRotation:90]

anchorPointrotation 都是 CCNode class 的属性,它是 CCSprite 的父级。

更新

根据你的评论,看来你想要的是一个永远不会停止的旋转 Sprite ?下面是让 Sprite 每 0.1 秒旋转 10 度的示例:

[sprite runAction:[CCRepeatForever actionWithAction:[CCRotateBy actionWithDuration:0.1 angle:10]]];

关于ios - 围绕 anchor 旋转 Sprite ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10234746/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com