我有一个 .png 图像,因此根据我的要求更改了大小,但是现在在 logcat 中,即使图像位于资产文件夹中,我也得到了 filenotfound 异常,并且它之间也没有大写字母和空格。我不知道为什么会发生这种情况?
// background layer: another image
CCSprite background = CCSprite.sprite("shipe150.png");
// scale the image (optional)
background.setScale(1.5f);
// change the transform anchor point (optional)
background.setAnchorPoint(CGPoint.make(0,0));
日志错误
07-13 10:59:07.928: W/System.err(3017): java.io.FileNotFoundException: shipe150.png
07-13 10:59:07.928: W/System.err(3017): at android.content.res.AssetManager.openAsset(Native Method)
07-13 10:59:07.939: W/System.err(3017): at android.content.res.AssetManager.open(AssetManager.java:315)
07-13 10:59:07.939: W/System.err(3017): at android.content.res.AssetManager.open(AssetManager.java:289)