Cocos2d-x 縦モニター方法
まず
そして OPEN THE RootViewController.MM
Find this void 【
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return UIInterfaceOrientationIsPortrait( interfaceOrientation );
}
UIInterfaceOrientationIsPortrait( interfaceOrientation ) <---keyPoint
// For ios6, use supportedInterfaceOrientations & shouldAutorotate instead
```- (NSUInteger) supportedInterfaceOrientations{
ifdef __IPHONE_6_0
return UIInterfaceOrientationMaskPortrait;
endif
return UIInterfaceOrientationMaskPortrait;
}
- (BOOL) shouldAutorotate {
**UIInterfaceOrientationMaskPortrait** <---keyPoint
return NO;
}```
NO <---keyPoint
】
そして 縦モニターは完成しました〜
Author And Source
この問題について(Cocos2d-x 縦モニター方法), 我々は、より多くの情報をここで見つけました https://qiita.com/MavisVermilion/items/f19918f0b7e3805db5bd著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .