用Flash CS3的AS制作跟随鼠标弹性小游戏,主要是练习AS的使用。
先看演示:
源文件下载:
[img]/Files/BeyondPic/2007-9/28/rar.gif[/img]
[url=http://www2.flash8.net/UploadTeach/200709/20070927115200359.rar]弹性小球运动.rar[/url]
修改文档属性。
[img]/Files/BeyondPic/2007-9/28/20070927115629279.gif[/img]
首先建立4个小的电影剪辑元件,分别设置如下:
[img]/Files/BeyondPic/2007-9/28/20070927115631741.gif[/img]
[img]/Files/BeyondPic/2007-9/28/20070927115632323.gif[/img]
[img]/Files/BeyondPic/2007-9/28/20070927115633347.gif[/img]
[img]/Files/BeyondPic/2007-9/28/20070927115634418.gif[/img]
回到主场景中加入如下代码:
attachMovie("newmouse","newmouse",_root.getNextHighestDepth());
attachMovie("circle","circle",_root.getNextHighestDepth(),{_x:250, _y:200});
attachMovie("crosshair","crosshair",_root.getNextHighestDepth());
attachMovie("ball","ball",_root.getNextHighestDepth());
Mouse.hide();
friction = 0.9;
speed_scale = 0.1;
xspeed = 0;
yspeed = 0;
newmouse.onEnterFrame = function() {
this._x = _root._xmouse;
this._y = _root._ymouse;
};
crosshair.onEnterFrame = function() {
this._x = _root._xmouse;
this._y = _root._ymouse;
dist_x = this._x-circle._x;
dist_y = this._y-circle._y;
distance = Math.sqrt(dist_x*dist_x+dist_y*dist_y);
if (distance>45) {
angle = Math.atan2(dist_y, dist_x);
this._x = 250+45*Math.cos(angle);
this._y = 200+45*Math.sin(angle);
}
};
ball.onEnterFrame = function() {
dist_x = (crosshair._x-this._x)*speed_scale;
dist_y = (crosshair._y-this._y)*speed_scale;
xspeed += dist_x;
yspeed += dist_y;
xspeed *= friction;
yspeed *= friction;
this._x += xspeed;
this._y += yspeed;
};
按Ctrl+Enter测试影片吧!
本文转自:http://www.5uflash.com/flashjiaocheng/Flash-cs3/999.html
先看演示:
源文件下载:
[img]/Files/BeyondPic/2007-9/28/rar.gif[/img]
[url=http://www2.flash8.net/UploadTeach/200709/20070927115200359.rar]弹性小球运动.rar[/url]
修改文档属性。
[img]/Files/BeyondPic/2007-9/28/20070927115629279.gif[/img]
首先建立4个小的电影剪辑元件,分别设置如下:
[img]/Files/BeyondPic/2007-9/28/20070927115631741.gif[/img]
[img]/Files/BeyondPic/2007-9/28/20070927115632323.gif[/img]
[img]/Files/BeyondPic/2007-9/28/20070927115633347.gif[/img]
[img]/Files/BeyondPic/2007-9/28/20070927115634418.gif[/img]
回到主场景中加入如下代码:
attachMovie("newmouse","newmouse",_root.getNextHighestDepth());
attachMovie("circle","circle",_root.getNextHighestDepth(),{_x:250, _y:200});
attachMovie("crosshair","crosshair",_root.getNextHighestDepth());
attachMovie("ball","ball",_root.getNextHighestDepth());
Mouse.hide();
friction = 0.9;
speed_scale = 0.1;
xspeed = 0;
yspeed = 0;
newmouse.onEnterFrame = function() {
this._x = _root._xmouse;
this._y = _root._ymouse;
};
crosshair.onEnterFrame = function() {
this._x = _root._xmouse;
this._y = _root._ymouse;
dist_x = this._x-circle._x;
dist_y = this._y-circle._y;
distance = Math.sqrt(dist_x*dist_x+dist_y*dist_y);
if (distance>45) {
angle = Math.atan2(dist_y, dist_x);
this._x = 250+45*Math.cos(angle);
this._y = 200+45*Math.sin(angle);
}
};
ball.onEnterFrame = function() {
dist_x = (crosshair._x-this._x)*speed_scale;
dist_y = (crosshair._y-this._y)*speed_scale;
xspeed += dist_x;
yspeed += dist_y;
xspeed *= friction;
yspeed *= friction;
this._x += xspeed;
this._y += yspeed;
};
按Ctrl+Enter测试影片吧!
本文转自:http://www.5uflash.com/flashjiaocheng/Flash-cs3/999.html
本教程介绍如何使用Flash CS3的ActionScript (AS) 制作一个简单的鼠标跟随弹性小球游戏。主要步骤包括创建四个电影剪辑元件、编写AS代码实现小球跟随鼠标并具有弹性效果。
7608

被折叠的 条评论
为什么被折叠?



