我正在尝试使用以下代码在我的应用程序中播放一系列PNG:

animatedSprite = [CCSprite spriteWithFile:@"Anim_1.png"];
animatedSprite.position = ccp( 512, 435 );
[self animatedSprite z:5];

NSArray *animFrames = [[NSArray alloc] initWithObjects:
                       [[CCSpriteFrameCache sharedSpriteFrameCache] spriteFrameByName:@"Anim_1.png"],
                       [[CCSpriteFrameCache sharedSpriteFrameCache] spriteFrameByName:@"Anim_2.png"], nil];

spriteAnim = [CCAnimation animationWithSpriteFrames:animFrames delay:1.0f/24.0f];

id animAction = [CCAnimate actionWithAnimation:spriteAnim];
[spriteAnim runAction:animAction];


正确添加了“ animatedSprite”,但动画无法播放。我在这里想念什么?

我正在使用Cocos2d 2.0,xcode 4.5

最佳答案

您应该在精灵上而不是在动画上运行动作。

[animatedSprite runAction:animAction];

07-28 03:56