HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – SpriteKit animateWithTextures不适用于纹理图集大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
当我不使用纹理图集时,一切都运行正常.但是当我使用纹理图集时,animateWithTextures不起作用而且什么都没有出现.
这是我的代码

SKTexture *spaceshipTexture = [SKTexture textureWithImagenamed:@"monkey.png"];
SKSpriteNode *spaceship = [SKSpriteNode spriteNodeWithTexture:spaceshipTexture];
spaceship.position = CGPointMake(0,0);
spaceship.anchorPoint = CGPointMake(0,0);
[self addChild: spaceship];

NSMutableArray *images=[NSMutableArray arrayWithCapacity:14];
for (int i=1; i<=14; i++) {
    NSString *filename=[NSString StringWithFormat:@"%dShuGuangx.png",i];
    SKTexture *tempTexture=[SKTexture textureWithImagenamed:filename];
    [images addObject:tempTexture];
}
NSLog(@"count %d",images.count);
SKAction *walkAnimation = [SKAction animateWithTextures:images timePerFrame:0.1];
[spaceship runAction:walkAnimation];

解决方法

[SKTexture preloadTextures:images withCompletionHandler:^(void){
        [spaceship runAction:walkAnimation];
    }];

解决了我的问题.

大佬总结

以上是大佬教程为你收集整理的ios – SpriteKit animateWithTextures不适用于纹理图集全部内容,希望文章能够帮你解决ios – SpriteKit animateWithTextures不适用于纹理图集所遇到的程序开发问题。

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。