Flash AS3 连锁反应的粒子动画

所属分类: 媒体动画 / Flash教程 阅读数: 39
收藏 0 赞 0 分享
这是一个粒子效果实例教程,将学习如何创建粒子并产生一个连锁反应。

演示:


1、新建Flash文档,设置:宽、高为 400 × 400 ,保存。

2、用椭圆工具在舞台上画一个 20 × 20 大小的圆。 (你能选择任意的颜色)

3、右键单击圆形,把它转换成影片剪辑,注册点居中。

4、在ActionScript导出的复选框中打勾 ,做类链接,类名为" Particle " 。图1:

5、把圆形从舞台删除,新建ActionScript 3.0文件。图2:

6、我们编写一个外部的Particle类。在编译器中输入代码:

package{



importflash.display.MovieClip;



publicclassParticleextendsMovieClip{



//Weneeddifferentspeedsfordifferentparticles.

//Thesevariablescanbeaccessedfromthemainmovie,becausetheyarepublic.

publicvarspeedX:Number;

publicvarspeedY:Number;

publicvarpartOfExplosion:Boolean=false;



functionParticle():void{



}

}

}

7、保存在fla文件的同一目录下,名为 " Particle " 。图3:

8、切换到我们的fla主文档。首先我们在舞台上生成粒子实例。在第一帧输入代码:

//Weneedfewimportsforthecolor

importfl.motion.Color;

importflash.geom.ColorTransform;

/*Wewant20particlesatthestart

particlesArrayisusedwhenweanimateeachparticle*/

varnumberOfParticles:Number=20;

varparticlesArray:Array=newArray();

//Eachtimeahitoccurs,wewanttocreate10newparticles

varnumberOfExplosionParticles:uint=10;

//Thisloopcreatesthefirstparticlesandgivesthemspeedandcoordinates

for(vari=0;i<numberOfParticles;i++){

varparticle:Particle=newParticle();

//Wewanttheparticlestostayattheiroriginalposition

particle.speedX=0;

particle.speedY=0;

//Setthestartingposition

particle.y=Math.random()*stage.stageHeight;

particle.x=Math.random()*stage.stageWidth;

//Addtheparticletothestageandpushittoarrayforlateruse.

addChild(particle);

particlesArray.push(particle);

}

9、测试你的影片,效果如图。图4:

10、随机地选择一个粒子产生爆炸效果。爆炸后,生成新的粒子。最后,删除舞台上爆炸的粒子。把下列代码块加入到动作面板:

//Callforthefirstexplosion

startExplosions();

/*Thisfunctionmakesarandomparticletoexplode.

Fromhere,thechainreactionbegins.*/

functionstartExplosions():void{

//Selectarandomparticlefromanarray

varindex=Math.round(Math.random()*(particlesArray.length-1));

varfirstParticle:Particle=particlesArray[index];

//Setarandomtint

varct:Color=newColor();

ct.setTint(0xFFFFFF*Math.random(),1);

//Create10newparticlesbecauseofexplosion

for(vari=0;i<numberOfExplosionParticles;i++){

varparticle:Particle=newParticle();

/*Giverandomxandyspeedtotheparticle.

Math.randomreturnsarandomnumbern,where0<=n<1.*/

particle.speedX=Math.random()*10-5;

particle.speedY=Math.random()*10-5;

//Applytherandomlyselectedtinttoeachparticle

particle.transform.colorTransform=ct;

//Setthestartingposition

particle.y=firstParticle.y;

particle.x=firstParticle.x;

//Particleispartofanexplosion

particle.partOfExplosion=true;

//Addtheparticletothestageandpushittoarrayforlateruse.

addChild(particle);

particlesArray.push(particle);

}

//Let’sremovetheparticlethatexploded(removefromstageandfromthearray)

removeChild(firstParticle);

particlesArray.splice(index,1);

addEventListener(Event.ENTER_FRAME,enterFrameHandler);

}

11、添加方法 enterFrameHandler,更新粒子坐标,使粒子动起来。输入下列代码:

//Thisfunctionisresponsiblefortheanimation

functionenterFrameHandler(e:Event):void{

//Loopthrougheveryparticle

for(vari=0;i<particlesArray.length;i++){

varparticleOne:Particle=particlesArray[i];

//Updatetheparticle’scoordinates

particleOne.y+=particleOne.speedY;

particleOne.x+=particleOne.speedX;

/*ThisloopcallsacheckForHitfunctiontofindifthetwoparticlesarecolliding*/

for(varj:uint=i+1;j<particlesArray.length;j++){

varparticleTwo:Particle=particlesArray[j];

/*Makesuretheparticlesareonstage,onlythencheckforhits*/

if(contains(particleOne)&&contains(particleTwo)){

checkForHit(particleOne,particleTwo);

}

}

}

}

12、方法 " checkForHit" 是最难的部份,碰撞检测。输入代码:

/*Thisfunctioncheckswhethertwoparticleshavecollided*/

functioncheckForHit(particleOne:Particle,particleTwo:Particle):void{

/*Let’smakesureweonlycheckthoseparticles,whereoneismovingandtheother

isstationary.Wedon’twanttwomovingparticlestoexplode.*/

if((particleOne.partOfExplosion==false&&particleTwo.partOfExplosion==true)||

particleOne.partOfExplosion==true&&particleTwo.partOfExplosion==false){

//CalculatethedistanceusingPythagoreantheorem

vardistanceX:Number=particleOne.x-particleTwo.x;

vardistanceY:Number=particleOne.y-particleTwo.y;

vardistance:Number=Math.sqrt(distanceX*distanceX+distanceY*distanceY);

/*Ifthedistanceissmallerthanparticle’swidth,wehaveahit.

Note:iftheparticleswereofdifferentsize,thecalculationwouldbe:

distance<((particleOne.width/2)+(particleTwo.width/2))

*/

if(distance<particleOne.width){

//Setarandomtinttotheparticlesthatexplode

varct:Color=newColor();

ct.setTint(0xFFFFFF*Math.random(),1);

//Create10newparticlesbecauseofanexplosion

for(vari=0;i<numberOfExplosionParticles;i++){

varparticle:Particle=newParticle();

particle.speedX=Math.random()*10-5;

particle.speedY=Math.random()*10-5;

//Applytint

particle.transform.colorTransform=ct;

//Setthestartingposition

particle.y=particleOne.y;

particle.x=particleOne.x;

particle.partOfExplosion=true;

//Addtheparticletothestageandpushittoarrayforlateruse.

addChild(particle);

particlesArray.push(particle);

}

/*Checkwhichofthetwoparticleswasstationary.

We’llremovetheonethatwasstationary.

*/

if(particleOne.partOfExplosion==false){

vartemp1=particlesArray.indexOf(particleOne);

particlesArray.splice(temp1,1);

removeChild(particleOne);

}

else{

vartemp2=particlesArray.indexOf(particleTwo);

particlesArray.splice(temp2,1);

removeChild(particleTwo);

}

}

}

}

13、代码全部完成,测试你的影片。也可以设置不同背景的舞台,画任意的图形。

最后完整的代码:

//Weneedfewimportsforthecolor

importfl.motion.Color;

importflash.geom.ColorTransform;

/*Wewant20particlesatthestart

particlesArrayisusedwhenweanimateeachparticle*/

varnumberOfParticles:Number=20;

varparticlesArray:Array=newArray();

//Eachtimeahitoccurs,wewanttocreate10newparticles

varnumberOfExplosionParticles:uint=10;

//Thisloopcreatesthefirstparticlesandgivesthemspeedandcoordinates

for(vari=0;i<numberOfParticles;i++){

varparticle:Particle=newParticle();

//Wewanttheparticlestostayattheiroriginalposition

particle.speedX=0;

particle.speedY=0;

//Setthestartingposition

particle.y=Math.random()*stage.stageHeight;

particle.x=Math.random()*stage.stageWidth;

//Addtheparticletothestageandpushittoarrayforlateruse.

addChild(particle);

particlesArray.push(particle);

}

//Callforthefirstexplosion

startExplosions();

/*Thisfunctionmakesarandomparticletoexplode.

Fromhere,thechainreactionbegins.*/

functionstartExplosions():void{

//Selectarandomparticlefromanarray

varindex=Math.round(Math.random()*(particlesArray.length-1));

varfirstParticle:Particle=particlesArray[index];

//Setarandomtint

varct:Color=newColor();

ct.setTint(0xFFFFFF*Math.random(),1);

//Create10newparticlesbecauseofexplosion

for(vari=0;i<numberOfExplosionParticles;i++){

varparticle:Particle=newParticle();

/*Giverandomxandyspeedtotheparticle.

Math.randomreturnsarandomnumbern,where0<=n<1.*/

particle.speedX=Math.random()*10-5;

particle.speedY=Math.random()*10-5;

//Applytherandomlyselectedtinttoeachparticle

particle.transform.colorTransform=ct;

//Setthestartingposition

particle.y=firstParticle.y;

particle.x=firstParticle.x;

//Particleispartofanexplosion

particle.partOfExplosion=true;

//Addtheparticletothestageandpushittoarrayforlateruse.

addChild(particle);

particlesArray.push(particle);

}

//Let’sremovetheparticlethatexploded(removefromstageandfromthearray)

removeChild(firstParticle);

particlesArray.splice(index,1);

addEventListener(Event.ENTER_FRAME,enterFrameHandler);

}

//Thisfunctionisresponsiblefortheanimation

functionenterFrameHandler(e:Event):void{

//Loopthrougheveryparticle

for(vari=0;i<particlesArray.length;i++){

varparticleOne:Particle=particlesArray[i];

//Updatetheparticle’scoordinates

particleOne.y+=particleOne.speedY;

particleOne.x+=particleOne.speedX;

/*ThisloopcallsacheckForHitfunctiontofindifthetwoparticlesarecolliding*/

for(varj:uint=i+1;j<particlesArray.length;j++){

varparticleTwo:Particle=particlesArray[j];

/*Makesuretheparticlesareonstage,onlythencheckforhits*/

if(contains(particleOne)&&contains(particleTwo)){

checkForHit(particleOne,particleTwo);

}

}

}

}

/*Thisfunctioncheckswhethertwoparticleshavecollided*/

functioncheckForHit(particleOne:Particle,particleTwo:Particle):void{

/*Let’smakesureweonlycheckthoseparticles,whereoneismovingandtheother

isstationary.Wedon’twanttwomovingparticlestoexplode.*/

if((particleOne.partOfExplosion==false&&particleTwo.partOfExplosion==true)||

particleOne.partOfExplosion==true&&particleTwo.partOfExplosion==false){

//CalculatethedistanceusingPythagoreantheorem

vardistanceX:Number=particleOne.x-particleTwo.x;

vardistanceY:Number=particleOne.y-particleTwo.y;

vardistance:Number=Math.sqrt(distanceX*distanceX+distanceY*distanceY);

/*Ifthedistanceissmallerthanparticle’swidth,wehaveahit.

Note:iftheparticleswereofdifferentsize,thecalculationwouldbe:

distance<((particleOne.width/2)+(particleTwo.width/2))

*/

if(distance<particleOne.width){



//Setarandomtinttotheparticlesthatexplode

varct:Color=newColor();

ct.setTint(0xFFFFFF*Math.random(),1);

//Create10newparticlesbecauseofanexplosion

for(vari=0;i<numberOfExplosionParticles;i++){

varparticle:Particle=newParticle();

particle.speedX=Math.random()*10-5;

particle.speedY=Math.random()*10-5;

//Applytint

particle.transform.colorTransform=ct;

//Setthestartingposition

particle.y=particleOne.y;

particle.x=particleOne.x;

&nbs,p;particle.partOfExplosion=true;

//Addtheparticletothestageandpushittoarrayforlateruse.

addChild(particle);

particlesArray.push(particle);

}

/*Checkwhichofthetwoparticleswasstationary.

We’llremovetheonethatwasstationary.

*/

if(particleOne.partOfExplosion==false){

vartemp1=particlesArray.indexOf(particleOne);

particlesArray.splice(temp1,1);

removeChild(particleOne);

}

else{

vartemp2=particlesArray.indexOf(particleTwo);

particlesArray.splice(temp2,1);

removeChild(particleTwo);

}

}

}

}


附件下载:Particle.rar      粒子.rar

更多精彩内容其他人还在看

Flash cs6怎么创建XML文档?

Flash cs6怎么创建XML文档?XML是扩展的标记语言,想要在flash中使用XML,该怎么使用呢?下面我摩恩就来看看在Flash中表示XML文档的技巧,需要的朋友可以参考下
收藏 0 赞 0 分享

flash怎么绘制太阳花简笔画?

flash怎么绘制太阳花简笔画?flash中想要画一朵太阳花,该怎么绘制简笔画效果的太阳花呢?下面我们就来看看详细的教程,需要的朋友可以参考下
收藏 0 赞 0 分享

Flash CS6带\b符号正则表达式怎么匹配?

Flash CS6带\b符号正则表达式怎么匹配?Flash CS6中正则表达式需要匹配,那么带/b符号的正则表达式该怎么匹配呢?下面我们就来看看详细的教程,需要的朋友可以参考下
收藏 0 赞 0 分享

flash怎么画小女孩的头像?

flash怎么画小女孩的头像?flash中想要画一个小女孩头像,该怎么画小女孩头像呢?下面我们就来看看详细的教程,很简单,需要的朋友可以参考下
收藏 0 赞 0 分享

flash怎么快速画一排松树?

flash怎么快速画一排松树?flash中想要画松树,该怎么快速画一排松树呢?下面我们就来看看flash绘制松树的教程,很简单,需要的朋友可以参考下
收藏 0 赞 0 分享

flash怎么将匹配字符串保存在同一数组?

flash怎么将匹配字符串保存在同一数组?文章中有很多想用的字符串,想要将相同的字符串放到同一数组,该怎么实现恩?下面我们 就来看看纤细的教程,需要的朋友可以参考下
收藏 0 赞 0 分享

flash正则表达式转义字符怎么使用?

flash正则表达式转义字符怎么使用?flash cs6中正则表达式中出现了^和$字符,需要使用转义符,该怎么使用转义字符呢?下面我们就来看看详细的教程,需要的朋友可以参考下
收藏 0 赞 0 分享

Flash怎么使用exec搜索匹配的字符串?

Flash怎么使用exec搜索匹配的字符串?Flash cs6中想要使用用exec方法搜索匹配的字符串,该怎么使用exec呢?下面我们就来看看详细的教程,需要的朋友可以参考下
收藏 0 赞 0 分享

flash2015怎么绘制彩色铅笔?

flash2015怎么绘制彩色铅笔?flash cc 2015中想要画一只彩色铅笔,该怎么画彩色铅笔呢?下面我们就来看看flash画彩色铅笔的教程,需要的朋友可以参考下
收藏 0 赞 0 分享

Flash怎么输出字符串中的反斜杠?

Flash怎么输出字符串中的反斜杠?flash cs6中的字符串输出的时候,发现反斜杠/没有输出出来,该怎么解决呢?下面我们就来看看详细的教程,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多