设为首页  
联系我们  
加入收藏  
网页制作 冲浪宝典 图形图像 操作系统 软件教学 编程开发 认证考试 安全技术 站长专区 文学驿站 娱乐天地 游戏天地 办公软件
文章搜索
您的位置: 首页 >> 文章首页 >> 图形图像 >> FLASH >> Flash制作红外线引导导弹爆炸视觉效果
精品推荐
FLASH点击TOP10
·Flash实例制作剖析:蝶恋花
·flash声音特效实例精选--音量调节
·Flash AS2 事件处理机制
·什么是FLASH
·FLASH经典问答
·很逼真的鼠标跟随的鱼的做法讲解
·Flash光影字效果
·Flash电子书鼠标拖拽翻页效果原理分析
·Flash实例教程:制作有趣的拍照效果动画
·基础鼠绘教程
图形图像点击TOP10
·中文字体设计欣赏合集
·教你用photoshop打造浪漫婚纱照
·PHOTOSHOP超强磨皮大法 将斑点选出来
·Photoshop的LAB模式做“非主流”照片
·Photoshop打造“非主流”颓废照片特效
·Photoshop轻松制作非主流水粉画效果
·扣图:Photoshop抠出复杂背景下的乱发
·Photoshop制作Lomo风格非主流效果
·清晰还原!Photoshop处理人物模糊照片
·Flash实例制作剖析:蝶恋花
精选专题

Flash制作红外线引导导弹爆炸视觉效果

作者: 来源:http://www.xgdown.com/ 时间:2007-6-26 11:12:42

Flash制作红外线引导导弹爆炸视觉效果(3)     fragment_mc.cacheAsBitmap = true;
 
    fragment_mc.onEnterFrame = function():Void {
      this._x += this.speedX;
      this._y += this.speedY;
 
      if (this._x < gLEFT this._x > gRIGHT this._y < gTOP this._y > gBOTTOM) {
        this.removeMovieClip();
      }
    };
  }
}

/* FUNCTION: Creates and initializes heat-seeking missiles */
createMissile.maxSpeed = 30;
createMissile.accel = 2;
function createMissile(target_mc:MovieClip, xPos:Number, yPos:Number):Void {
  var depth:Number = _root.getNextHighestDepth();
  var missile_mc:MovieClip = attachMovie("Missile", "missile" + depth, depth);
  missile_mc._x = xPos;
  missile_mc._y = yPos;
  missile_mc.speed = 0;
 
  missile_mc.setRotation = function():Void {
    var dy:Number = target_mc._y - this._y;
    var dx:Number = target_mc._x - this._x;
    this._rotation = rad2deg(Math.atan2(dy, dx));
  };
 
  missile_mc.onEnterFrame = function():Void {
    this.setRotation();
 
    if (this.speed < createMissile.maxSpeed) {
      this.speed += createMissile.accel;
    }
    this._x += Math.cos(deg2rad(this._rotation)) * this.speed;
    this._y += Math.sin(deg2rad(this._rotation)) * this.speed;
 
    if (this.hitTest(target_mc)) {
      explosion(target_mc._x, target_mc._y);
      this.removeMovieClip();
    }
  };
}

/* MAIN PROGRAM LOGIC */
var gameBG_mc:MovieClip = _root.createEmptyMovieClip("gameBG", 0);

共4页 9 7 [1] [2] [3] [48 :>
Flash制作红外线引导导弹爆炸视觉效果 相关软件:
Flash制作红外线引导导弹爆炸视觉效果 相关文章:
特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
转载请注明来源:http://www.xgdown.com