cocos2d iphone 5 4 inch display support(cocos2d iphone 5 4 英寸显示器支持)
问题描述
我一直在到处寻找这个,但没有运气.
I have been looking everywhere for this but with no luck.
如何为更大的 4 英寸 iPhone 5 显示屏准备基于 cocos2d 的游戏?我的应用程序正在运行,但我想为更大的 4 英寸显示屏增强它.Cocos2d 为视网膜显示图像使用自己的后缀.对于 iPhone 4 和 4S 的视网膜显示,它是 image-hd.png
.iPhone 5 有后缀吗?我该如何做到这一点?
How do I prepare my cocos2d based game for bigger 4 inch display of the iPhone 5?
My app is working but i want to enhance it for the bigger 4 inch display.
Cocos2d uses its own suffixes for retina display images. For retina display of the iPhone 4 and 4S it is image-hd.png
. Is there a suffix for iPhone 5? How do I accomplish this?
干杯.
推荐答案
添加到 AppDelegate:
Add it to AppDelegate:
[CCFileUtils setiPadRetinaDisplaySuffix:@"your suffix"];
[CCFileUtils setiPadSuffix:@"your suffix"];
[CCFileUtils setiPhoneFourInchDisplaySuffix:@"your suffix"];
[CCFileUtils setiPhoneRetinaDisplaySuffix:@"your suffix"];
这篇关于cocos2d iphone 5 4 英寸显示器支持的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:cocos2d iphone 5 4 英寸显示器支持
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01