我是 iPhone 开发的新手,我真的很想看到这种特殊效果的工作示例。提前致谢。
Rob Sawyer
问问题
4083 次
3 回答
2
如果您在 Xcode 中打开 Cocos2d 源代码,您应该能够启动包含所有粒子效果的 ParticleTest 示例。或者,在 youtube 上搜索 cocos2d,有一个演示视频展示了所有这些效果。
于 2009-05-14T23:14:36.770 回答
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];
于 2012-08-18T18:38:59.083 回答
0
就这么简单:
ParticleSystem *emitter = [ParticleExplosion 节点]; [self addChild: 发射器];
于 2009-03-20T07:35:38.807 回答