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 图形
基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01