所以我使用 cocos2d 中的加速度计来旋转我的精灵,但旋转一点也不平滑。我知道我必须使用过滤器,但我不知道如何将它集成到我的代码中:
-(id) init
{
self.isAccelerometerEnabled = YES;
[[UIAccelerometer sharedAccelerometer] setUpdateInterval:1/60];
}
- (void) accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration {
ombreoeuf1.rotation = acceleration.y * 90 ;
}
对不起我的英语我是法国人:/