0

我正在尝试在 cocos2d-js 中创建动画精灵,但我不想像在 cocos2d-iphone 项目中那样使用精灵表:

NSMutableArray *animationFrames = [NSMutableArray array];
    int frameCount = 0;
    for(int i = 1; i <= 9; ++i)
    {
    CCSpriteFrame *spriteFrame = [CCSpriteFrame frameWithImageNamed:[NSString stringWithFormat:@"hero-%d.png",i]];
    [animationFrames addObject:spriteFrame];
    }
NSLog(@"cria sprite com frames");
_player = [CCSprite spriteWithSpriteFrame:animationFrames.firstObject];

如何在 cocos2d-js 中做到这一点?我在 cocos2d-js 文档中没有找到相同的功能。

4

1 回答 1

0

也许下面的代码可能会更复杂一些。但它可以工作并从文件加载精灵并将动画放在一起并在精灵的 runAction 中使用它(animFrame 是一个空数组,“this”是一个 ccLayer)。

var str = "";
for (var i = 1; i < 9; i++) {
    str = "mosquito_fly" + (i < 10 ? ("0" + i) : i) + ".png";
    var texture = cc.textureCache.addImage("res/Murbiks/"+str);
    var spriteFrame = cc.SpriteFrame.create(texture,cc.rect(0,0,96,96));
    animFrames.push(spriteFrame);
}

var animation = cc.Animation.create(animFrames, 0.06+Math.random()*0.01, 10);
var animate = this.animateMostafa = cc.Animate.create(animation);

// Create sprite and set attributes
mostafa = cc.Sprite.create(res.Mostafa_single_png);        
mostafa.attr({
    x: 0,
    y: 0,
    scale: 0.60+Math.random()*0.3,
    rotation: 0
});
this.addChild(mostafa, 0);
于 2014-05-02T14:35:15.680 回答