首页 > 代码库 > cocos2d-x 2.x 支持多个方向屏幕翻转

cocos2d-x 2.x 支持多个方向屏幕翻转

主要改动 RootViewController.mmsupportedInterfaceOrientations 方法

1.四个方向

UIInterfaceOrientationMaskAll

2.三个方向(除了屏幕倒着全部都能够旋转)

UIInterfaceOrientationMaskAllButUpsideDown

3.竖屏两个方向

UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;

4.横屏两个方向

UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight 或

UIInterfaceOrientationMaskLandscape



cocos2d-x 2.x 支持多个方向屏幕翻转