我正在尝试在屏幕中间旋转一个圆圈,即在添加到主场景的图层上,但它不是围绕其中心旋转,而是以某种奇怪的方式上下旋转。似乎它围绕屏幕的左下角旋转。
id rot1=[CCRotateBy actionWithDuration:0.4 angle:10];
id rot2=[CCRotateBy actionWithDuration:0.4 angle:-20];
id rot3=[CCRotateBy actionWithDuration:0.4 angle:+20];
id rotB=[CCRotateTo actionWithDuration:0.2 angle:0];
id seq=[CCSequence actions:rot1,rot2,rot3,rot2,rot3,rot2,rotB, nil];
[mainButton runAction:seq];
这里有什么问题?谢谢 。