0

所以我正在使用 Cocos2d 并且我不断收到错误消息

Cocos2d: cocos2d: CCFileUtils: Warning file not found: fps_images-ipad.fnt
Cocos2d: cocos2d: CCFileUtils: Warning file not found: fps_images-ipad.png
Cocos2d: cocos2d: CCFileUtils: Warning file not found: fps_images-ipad.png
Cocos2d: cocos2d: CCFileUtils: Warning file not found: fps_images-ipad.png
Cocos2d: cocos2d: CCFileUtils: Warning file not found: TurkeySprite_v2-ipad.png
Cocos2d: cocos2d: WARNING Filename(TurkeySprite_v2-ipad) already has the suffix -ipad. Using it.
Cocos2d: cocos2d: WARNING Filename(TurkeySprite_v2-ipad) already has the suffix -ipad. Using it.

我不确定这一切意味着什么,但我几乎刚刚开始我的项目并且想知道我怎么这么快就出错了。

有人可以帮忙吗?

4

1 回答 1

0

警告

Cocos2d: cocos2d: CCFileUtils: Warning file not found: fps_images-ipad.fnt

意味着您尝试显示加载文件名@“fps_images.fnt”的精灵,并且没有找到它的iPad特定版本(这将被称为@“fps_images-ipad.fnt”。

另一方面,您收到的另一个警告:

Cocos2d: cocos2d: WARNING Filename(TurkeySprite_v2-ipad) already has the suffix -ipad. Using it.

表示您尝试通过将图像名称指定为:@“TurkeySprite_v2-ipad.png”来加载图像;因为它已经包含-ipad您收到警告的后缀。

在第一种情况下,您可以通过提供 iPad 特定版本的文件来避免警告;在第二种情况下,只需-ipad从文件名中删除:@“TurkeySprite_v2.png”。

在这两种情况下,这两种警告都没有绝对错误。

于 2012-06-20T19:11:09.047 回答