cocos2d-x 自带11种粒子特效

前端之家收集整理的这篇文章主要介绍了cocos2d-x 自带11种粒子特效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. //粒子特效
  2. //爆炸效果
  3. CCParticleSystem*particleSystem=CCParticleExplosion::create();
  4. particleSystem->setTexture(CCTextureCache::sharedTextureCache()->addImage("stars.png"));
  5. addChild(particleSystem);
  6. //火焰效果
  7. CCParticleSystem*particleSystem=CCParticleFire::create();
  8. particleSystem->setTexture(CCTextureCache::sharedTextureCache()->addImage("fire.png"));
  9. addChild(particleSystem);
  10. //花束效果
  11. CCParticleSystem*particleSystem=CCParticleFlower::create();
  12. particleSystem->setTexture(CCTextureCache::sharedTextureCache()->addImage("fire.png"));
  13. //烟花效果
  14. CCParticleSystem*particleSystem=CCParticleFireworks::create();
  15. //星系效果
  16. CCParticleSystem*particleSystem=CCParticleGalaxy::create();
  17. //流星效果
  18. CCParticleSystem*particleSystem=CCParticleMeteor::create();
  19. //下雨效果
  20. CCParticleSystem*particleSystem=CCParticleRain::create();
  21. //烟雾效果
  22. CCParticleSystem*particleSystem=CCParticleSmoke::create();
  23. //下雪效果
  24. CCParticleSystem*particleSystem=CCParticleSnow::create();
  25. particleSystem->setTexture(CCTextureCache::sharedTextureCache()->addImage("snow.png"));
  26. //漩涡效果
  27. CCParticleSystem*particleSystem=CCParticleSpiral::create();
  28. //太阳效果
  29. CCParticleSystem*particleSystem=CCParticleSun::create();
  30. addChild(particleSystem);
原文链接:https://www.f2er.com/cocos2dx/341633.html

猜你在找的Cocos2d-x相关文章