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 图形


基础教程推荐
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01