如何在 cocos2d 场景中将屏幕方向锁定为横向?
我正在使用 box2d 进行 ios 应用程序开发。我想将设备方向修复为横向左侧,这是 cocos2d 中默认的。
我该如何锁定屏幕方向,以便在用户玩游戏时无法更改屏幕方向?
I am using box2d for ios app development.I would like to fix device orientation to landscape left which comes default in cocos2d.
How would I go about locking the screen orientation so that it cannot be changed while the user is playing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Cocos2D 中打开 GameConfig.h 并根据其文档更改 Autorotation 宏以禁用自动旋转支持。
In Cocos2D open the GameConfig.h and change the Autorotation macro according to its documentation to disable autorotate support.
以下是您问题的答案:
系统忽略 iPhone 旋转
您告诉操作系统忽略系统旋转。
Here's the answer to your question:
System ignore iPhone rotation
You tell the OS to ignore system rotations.