How to add Animated Image In Cocos2D without use of TexturePacker?

烈酒焚心 提交于 2019-12-22 13:56:36

问题


I am New at iOS Development. I am also starting to learn Cocos2D.

I've read this tutorial: http://www.raywenderlich.com/tutorials#cocos2d

It is a superb tutorial for beginners, but I'm also interested in animating the image. How can I accomplish animation?

So I read tutorial (describe from Above Link) about how to put animated image with simple Project.

In This tutorial I used TexturePacker and it's working... but I want to know more about how to animate images without using TexturePacker.

Is it possible? If so, then please explain how or link to tutorials on how to make it work.

Thanks in advance.


回答1:


You can run animation from file.

    CCSprite *coin = [CCSprite spriteWithFile:@"MyImage_1.png"];
    coin.position  = ccp(mS.width*0.5f, mS.height*0.5f);
    [self addChild:coin z:2];

    {
        NSString *animationName = @"UNIQUE_ANIMATION_NAME";

        CCAnimation* animation = nil;
        animation = [[CCAnimationCache sharedAnimationCache]  animationByName:animationName];

        if(!animation)
        {
            NSMutableArray *animFrames = [NSMutableArray array];

            for( int i=1;i<=5;i++)
            {
                NSString* path = [NSString stringWithFormat:@"MyImage_%d.png", i];
                CCTexture2D* tex = [[CCTextureCache sharedTextureCache] addImage:path];
                CGSize texSize = tex.contentSize;
                CGRect texRect = CGRectMake(0, 0, texSize.width, texSize.height);
                CCSpriteFrame* frame = [CCSpriteFrame frameWithTexture:tex rect:texRect];
                [animFrames addObject:frame];
            }

            animation = [CCAnimation animationWithSpriteFrames:animFrames];

            animation.delayPerUnit = 0.175f;
            animation.restoreOriginalFrame = YES;

            [[CCAnimationCache sharedAnimationCache] addAnimation:animation name:animationName];
        }

        if(animation)
        {
            CCAnimate *animAction  = [CCAnimate actionWithAnimation:animation];
            [coin runAction:animAction];
        }
    }


来源:https://stackoverflow.com/questions/17609439/how-to-add-animated-image-in-cocos2d-without-use-of-texturepacker

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!