有人在Cocos2d中有一个ParticleExplosion的工作示例吗?

时间:2009-02-17 19:43:17

标签: iphone objective-c cocos2d-iphone

我是iPhone开发的新手,我真的很想看到这种特殊效果的实例。提前谢谢。

ParticleExplosion

3 个答案:

答案 0 :(得分:2)

如果在Xcode中打开Cocos2d源代码,您应该能够启动包含所有粒子效果的ParticleTest示例。或者,在youtube上搜索cocos2d,这是一个显示所有这些效果的演示视频。

答案 1 :(得分:2)

    CCParticleSystem *emitter = [CCParticleExplosion node];

    //set the location of the emitter
    emitter.position = mySprite.position;

    //set size of particle animation
    emitter.scale = 0.5;

    //set an Image for the particle
    emitter.texture = [[CCTextureCache sharedTextureCache] addImage:@"particle.png"];

    //set length of particle animation
    [emitter setLife:0.5f];

    //add to layer ofcourse(effect begins after this step)
    [self addChild: emitter];

答案 2 :(得分:0)

这很简单:

ParticleSystem * emitter = [ParticleExplosion node]; [self addChild:emitter];