博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
粒子效果 CCParticleSystem 编码的实现
阅读量:6607 次
发布时间:2019-06-24

本文共 1542 字,大约阅读时间需要 5 分钟。

CCParticleSystem *sun; //// fire //        CCParticleSystem* ff = [CCParticleFire node]; //        ff.position = ccp(80,90);        //        ff.totalParticles = 50; //        ff.life = 2.0f; //        ff.texture = [[CCTextureCache sharedTextureCache] addImage: @"fire.png"]; //        [self addChild:ff]; //        //// ga 旋转蓝色的银河 //        CCParticleSystem* ga = [CCParticleGalaxy node]; //        ga.position = ccp(240,240);        //        ga.totalParticles = 100; //        ga.life = 1.5f; //        [self addChild:ga]; ////-----------//sun         sun = [CCParticleSun node];         sun.position = ccp(12,12); //--------变小了         sun.emitterMode = kCCParticleModeGravity;         sun.startSize = 10.0f;         sun.startSizeVar = 10.0f;         sun.endSize = 30.0f;         sun.endSizeVar = 30.0f;         sun.totalParticles = 30;         sun.life = 1.0f;         sun.texture = [[CCTextureCache sharedTextureCache] addImage: @"fire.png"];         [self addChild:sun]; ////-----------//smoke         smoke = [CCParticleSmoke node];         smoke.position = ccp(12,12); //--------变小了         smoke.emitterMode = kCCParticleModeGravity;         smoke.startSize = 10.0f;         smoke.startSizeVar = 10.0f;         smoke.endSize = 30.0f;         smoke.endSizeVar = 30.0f;         smoke.totalParticles = 30;         smoke.life = 1.0f;         [self addChild:smoke];

以上是硬编码

 

下面使用plist 文件

emitter = [[CCParticleSystemQuad alloc] initWithFile:@"particleFeder.plist"];     emitter.position = self.position;     [_scene addChild:emitter z:10];

转载地址:http://ctfso.baihongyu.com/

你可能感兴趣的文章
vmware workstation14永久激活密钥分享
查看>>
PHP面向对象的进阶学习(抽像类、接口、final、类常量)
查看>>
iOS 多线程 之 GCD(大中枢派发)(一)
查看>>
pstool 的使用方法
查看>>
mysql用户与权限管理笔记
查看>>
a里面不能嵌套a
查看>>
Myeclipse中打开接口实现类的快捷键
查看>>
浅谈React数据流管理
查看>>
<20190516> 一次比较糟糕的售后维修体验(某硕主板)
查看>>
iOS网络篇2-http协议通信规则
查看>>
删除sql dump中的AUTO_INCREMENT
查看>>
使用JdbcTemplate和JdbcDaoSupport
查看>>
C博客作业--指针
查看>>
版本12.2.0.1.0数据库,复制种子数据库快速创建租户数据库PDB
查看>>
吴忠军中华演出网
查看>>
Page翻页分页css代码,分页div+css代码
查看>>
编程之美 第1章 游戏之乐——游戏中碰到的题目(十一)
查看>>
mysql for Mac 下创建数据表中文显示为?的解决方法
查看>>
Qt中插入html样式
查看>>
【译】Matplotlib:plotting
查看>>