cocos2d-x如何切换横竖屏

前端之家收集整理的这篇文章主要介绍了cocos2d-x如何切换横竖屏前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

IOS:

找到项目IOS/RootViewController.mm

修改

- (NSUInteger) supportedInterfaceOrientations{
#ifdef __IPHONE_6_0
    //横版
    //return UIInterfaceOrientationMaskAllButUpsideDown;
    //竖版
    return UIInterfaceOrientationMaskPortrait;
#endif
}
我将原来的横版改成了竖版
 

另外我们需要改一下项目,点击你的项目,选择General选项。修改Device Orientation

其中 portrait //竖版

landscape //横版,横版需要left和right都勾选

搞定IOS版本


android:

android比较简单,直接修改项目proj.android/AndroidManifest.xml

android:screenOrientation="portrait" //竖版

android:screenOrientation = "landscape" //横版

原文链接:https://www.f2er.com/cocos2dx/341456.html

猜你在找的Cocos2d-x相关文章