gpt4 book ai didi

iphone - 如何在 Cocos2D 中强制使用纵向模式?

转载 作者:行者123 更新时间:2023-12-03 20:28:02 24 4
gpt4 key购买 nike

我读到的每个网页都告诉我编辑“GameConfig.h”文件。我的项目目录中没有这样的文件,如果我尝试导入它,则会出现错误。如何在不编辑这个虚幻的头文件的情况下更改默认方向?

最佳答案

你没有说你正在使用哪个版本的cocos2d,但由于你没有GameConfig.h文件,我猜你正在使用2.0rc。

如果是这样的话,查看AppDelegate.m,你会发现:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}

将横向更改为纵向,这样您现在就可以:

return UIInterfaceOrientationIsPortrait(interfaceOrientation);

然后,您的游戏将仅在两个纵向方向之间自动旋转。

关于iphone - 如何在 Cocos2D 中强制使用纵向模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10475309/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com