Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)
问题描述
我现在在将基于 cocos2d 的游戏从 Xcode 4.3+ 导出时遇到了问题.
I'm running into an issue now when exporting my cocos2d based games out of Xcode 4.3+.
虽然我不打算在我的游戏中加入 iPad Retina 图形,但游戏似乎需要 Retina iPad 图形,现在只能在 iPad Retina 上错误地加载所有内容.
While I'm not intending on including iPad Retina graphics with my game, it seems the game wants Retina iPad graphics and is now loading everything incorrectly on iPad Retina Only.
只有从基于比例的 UI 加载资源时,是否有一种快速简单的方法来禁用 iPad Retina 图像?
Is there a quick and simple way to disable iPad Retina images only when loading assets from a scale based UI?
谢谢!
推荐答案
所以很简单.将此代码添加到 AppDelegate.m 文件中
So it was quite simple. Added this code to the AppDelegate.m File
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
[director enableRetinaDisplay:NO];
} else {
[director enableRetinaDisplay:YES];
}
轰隆隆.希望这可以帮助其他人,因为我没有看到任何现成的解决方案.
Boom. Hope this can help someone else as I didn't see any readily available solutions.
这篇关于Cocos2D + 仅禁用 Retina iPad 图形的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Cocos2D + 仅禁用 Retina iPad 图形


- android 4中的android RadioButton问题 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android - 拆分 Drawable 2022-01-01