我已经实现了核心动作的设置,但无法弄清楚如何保持我的精灵的旋转,以便它跟随iPhone的旋转(在z轴上)。
更新代码:
[self.motionManager startDeviceMotionUpdatesToQueue:[NSOperationQueue currentQueue]
withHandler:^(CMDeviceMotion *motion, NSError *error)
{
mySprite.zRotation = ?;
}];
有什么想法吗?
答案 0 :(得分:0)
CMAttitude是您正在寻找的课程。当您更新块激活时,您可以通过CMDeviceMotion实例上的attitude属性访问设备态度。从态度上,您可以直接向设备询问有关其旋转的各种有趣信息,但对于您的使用案例,您可能只需要请求偏航。
当然假设您不需要以任何方式转换这些值,您可以将它们直接泵入精灵的zRotation,您应该会收到预期的结果。
[self.motionManager startDeviceMotionUpdatesToQueue:[NSOperationQueue currentQueue]
withHandler:^(CMDeviceMotion *motion, NSError *error) {
mySprite.zRotation = motion.attitude.yaw;
}];
的图片