スプライトを回転させていますが、少し速すぎます。これが私のコードです。回転の速度を制御する方法はありますか?
//enemySprite
enemySprite = [CCSprite spriteWithFile:@"Asteroid.png"];
enemySprite.anchorPoint = ccp(0.5f, 0.5f);
enemySprite.position = ccp(arc4random()%480, winSize.height -60);
//Rotation
id rotate = [CCRotateBy actionWithDuration:1 angle:360];
id repeatRotate = [CCRepeatForever actionWithAction:rotate];
[enemySprite runAction:repeatRotate];
[self addChild:enemySprite z:5];
[self schedule:@selector(callEveryFrame:)];