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