欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

flash as3.0粒子效果實例教程

系統 1703 0

1、新建Flash文檔,設置:寬、高為 400 × 400 ,保存。
2、用橢圓工具在舞臺上畫一個 20 × 20 大小的圓。 (你能選擇任意的顏色)
3、右鍵單擊圓形,把它轉換成影片剪輯,注冊點居中。
4、在ActionScript導出的復選框中打勾 ,做類鏈接,類名為" Particle " 。圖1:

5、把圓形從舞臺刪除,新建ActionScript 3.0文件。圖2:

6、我們編寫一個外部的Particle類。在編譯器中輸入代碼:
package?{
????????import?flash.display.MovieClip;
????????public?class?Particle?extends?MovieClip?{
????????????????//We?need?different?speeds?for?different?particles.
????????????????//These?variables?can?be?accessed?from?the?main?movie,?because?they?are?public.
????????????????public?var?speedX:Number;
????????????????public?var?speedY:Number;
????????????????public?var?partOfExplosion:Boolean?=?false;
????????????????function?Particle?():void?{
????????????????}
????????}
}7、保存在fla文件的同一目錄下,名為 " Particle " 。圖3:

8、切換到我們的fla主文檔。首先我們在舞臺上生成粒子實例。在第一幀輸入代碼:
//We?need?few?imports?for?the?color
import?fl.motion.Color;
import?flash.geom.ColorTransform;
/*We?want?20?particles?at?the?start
particlesArray?is?used?when?we?animate?each?particle?*/
var?numberOfParticles:Number?=?20;
var?particlesArray:Array?=?new?Array();
//Each?time?a?hit?occurs,?we?want?to?create?10?new?particles
var?numberOfExplosionParticles:uint?=?10;
//This?loop?creates?the?first?particles?and?gives?them?speed?and?coordinates
for?(var?i=0;?i?
9、測試你的影片,效果如圖。圖4:

?
?
10、隨機地選擇一個粒子產生爆炸效果。爆炸后,生成新的粒子。最后,刪除舞臺上爆炸的粒子。把下列代碼塊加入到動作面板: //Call?for?the?first?explosion
startExplosions?();
/*This?function?makes?a?random?particle?to?explode.
From?here,?the?chain?reaction?begins.*/
function?startExplosions?():void?{
????????//Select?a?random?particle?from?an?array
????????var?index?=?Math.round(Math.random()?*?(particlesArray.length-1));
????????var?firstParticle:Particle?=?particlesArray[index];
????????//Set?a?random?tint
????????var?ct:Color?=?new?Color();
????????ct.setTint?(0xFFFFFF?*?Math.random(),1);
????????//Create?10?new?particles?because?of?explosion
????????for?(var?i=0;?i?11、添加方法 enterFrameHandler,更新粒子坐標,使粒子動起來。輸入下列代碼:
//This?function?is?responsible?for?the?animation
function?enterFrameHandler?(e:Event):void?{
????????//Loop?through?every?particle
????????for?(var?i=0;?i?12、方法 " checkForHit" 是最難的部份,碰撞檢測。輸入代碼:
/*This?function?checks?whether?two?particles?have?collided*/
function?checkForHit?(particleOne:Particle,?particleTwo:Particle):void?{
????????/*Let’s?make?sure?we?only?check?those?particles,?where?one?is?moving?and?the?other
????????is?stationary.?We?don’t?want?two?moving?particles?to?explode.?*/
????????if?((particleOne.partOfExplosion?==?false?&&?particleTwo.partOfExplosion?==?true)?||
????????particleOne.partOfExplosion?==?true?&&?particleTwo.partOfExplosion?==?false?)?{
????????????????//Calculate?the?distance?using?Pythagorean?theorem
????????????????var?distanceX:Number?=?particleOne.x?-?particleTwo.x;
????????????????var?distanceY:Number?=?particleOne.y?-?particleTwo.y;
????????????????var?distance:Number?=?Math.sqrt(distanceX*distanceX?+?distanceY*distanceY);
????????????????/*?If?the?distance?is?smaller?than?particle’s?width,?we?have?a?hit.?
????????????????Note:?if?the?particles?were?of?different?size,?the?calculation?would?be:
????????????????distance?13、代碼全部完成,測試你的影片。也可以設置不同背景的舞臺,畫任意的圖形。
最后完整的代碼:
//We?need?few?imports?for?the?color
import?fl.motion.Color;
import?flash.geom.ColorTransform;
/*We?want?20?particles?at?the?start
particlesArray?is?used?when?we?animate?each?particle?*/
var?numberOfParticles:Number?=?20;
var?particlesArray:Array?=?new?Array();
//Each?time?a?hit?occurs,?we?want?to?create?10?new?particles
var?numberOfExplosionParticles:uint?=?10;
//This?loop?creates?the?first?particles?and?gives?them?speed?and?coordinates
for?(var?i=0;?i?
附件下載:

Particle.rar
??????

粒子.rar
本文轉自:http://www.5uflash.com/flashjiaocheng/Flash-as3-jiaocheng/5300.html

flash as3.0粒子效果實例教程


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 一区二区三区高清在线观看 | 久久久久久久久久久久久久久久久久久 | 久久九九国产精品怡红院 | 男女xx| 亚洲好视频 | 欧美天堂在线观看 | 日本高清成人 | 噜噜噜噜精品视频在线观看 | 欧美午夜视频 | 精品一卡2卡三卡4卡免费观看 | 蜜臀AV性色A片在线观看 | 99精品99| 成人在线免费视频观看 | 久久经典国产视频 | 五月激情天 | 奇米影视8888狠狠狠狠 | 国内精品伊人久久久久7777人 | 一区二区三区成人A片在线观看 | 日韩国产欧美在线观看 | 久热中文字幕在线精品首页 | 日本不卡中文字幕一区二区 | 亚洲欧美另类在线观看 | 波多野结衣在线视频观看 | 清清草免费视频 | 最新日本中文字幕在线观看 | 亚洲欧美成人 | 国产高清第一页 | 99久久免费国产精品 | 日韩精品一区二区三区在线观看 | 欧美精品一区二区三区免费播放 | 成人欧美一区二区 | 欧洲另类在线1 | 最新国产视频 | 久久国产精品一区二区 | 欧美淫片| 91丁香亚洲综合社区 | 一区二区三区四区精品 | 观看av| 亚洲日本视频 | 精品久久一二三区 | 日日摸狠狠的摸夜夜摸 |