ios – 由于未捕获的异常终止应用程序“Texture Atlas Not Found”

ios – 由于未捕获的异常终止应用程序“Texture Atlas Not Found”,第1张

概述我创建了一个使用Sprite Kit的简单动画项目.它运行良好,没有问题. 当我将工作副本中的文件合并时,会出现该错误. NSMutableArray *dPFrames = [NSMutableArray array];SKTextureAtlas *dPAtlas = [SKTextureAtlas atlasNamed:@"dP"]; <<---- Thread 1: signal SI 我创建了一个使用Sprite Kit的简单动画项目.它运行良好,没有问题.
当我将工作副本中的文件合并时,会出现该错误.
NSMutableArray *dPFrames = [NSMutableArray array];SKTextureAtlas *dPAtlas = [SKTextureAtlas atlasnamed:@"dP"]; <<---- Thread 1: signal SIGbarTint numImages = dPAtlas.texturenames.count;for (int i=1; i <= numImages; i++) {    Nsstring *texturename = [Nsstring stringWithFormat:@"dP%d@2x",i];    SKTexture *temp = [dPAtlas texturenamed:texturename];    [dPFrames addobject:temp];}_dPAnimateFrames = dPFrames;SKTexture *temp = _dPAnimateFrames[0];_dP = [SKSpriteNode spriteNodeWithTexture:temp];_dP.position = CGPointMake(150,110);[self addChild:_dP];

以下是控制台中的消息:

2013-10-09 10:52:14.777 MyProject[1550:a0b] * Terminating app due to uncaught exception ‘Texture Atlas Not Found’,reason: ‘Texture Atlas Not Found’

我有搜索和研究的答案,但不幸的是我没有发现.请分享解决方案.

解决方法 去你的项目,并按照下列步骤: 1 GT;转到构建设置,2 – ;搜索启用纹理图集生成,然后选择是 总结

以上是内存溢出为你收集整理的ios – 由于未捕获异常终止应用程序“Texture Atlas Not Found”全部内容,希望文章能够帮你解决ios – 由于未捕获的异常终止应用程序“Texture Atlas Not Found”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1097317.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存