5D艺术网首页
商城
|
资讯
|
作品
|
博客
|
教程
|
论坛
登录
注册
加为好友
发短消息
来自:北京
性别:先生
最后登录:2014-08-29
http://veteran.5d.cn/
www.toswf.com
首页
|
新闻
|
话题
|
博客
|
相册
|
艺术作品
|
社交关系
|
留言板
|
社交圈
2005/06/14 | as1.0(贪食蛇)
类别(Flash)
|
评论
(0)
|
阅读(325)
|
发表于 15:30
Flash 动画
:
sinit = function () {
timeline = _root;
Xp = 100;
Yp = 100;
speed = 9;
bodynum = 0;
KeyEvent = this;
i = 1;
duplicateMovieClip(body, "body0", 0);
};
sinit.prototype.headPosition = function() {
var obj = timeline.head;
obj._x = Xp;
obj._y = Yp;
KeyEvent.onKeyDown = function() {
if (Key.isDown(Key.LEFT) && obj._rotation<>90) {
obj._rotation = -90;
}
if (Key.isDown(Key.UP) && obj._rotation<>180) {
obj._rotation = 0;
}
if (Key.isDown(Key.RIGHT) && obj._rotation<>-90) {
obj._rotation = 90;
}
if (Key.isDown(Key.DOWN) && obj._rotation<>0) {
obj._rotation = 180;
}
};
Key.addListener(KeyEvent);
timeline.head.onEnterFrame = function() {
if ((this._x+this._width)>=550 or this._x-this._width<=0 or (this._y+this._width)>=400 or (this._y-this._width)<=0) {
xs = 0;
ys = 0;
delete this.onEnterFrame;
}
P = int(this._rotation/90);
if (P == 2) {
xs = 0;
ys = speed;
}
if (P == 1) {
xs = speed;
ys = 0;
}
if (P == -1) {
xs = -speed;
ys = 0;
}
if (P == 0) {
xs = 0;
ys = -speed;
}
KeyEvent.bodyPosition(this._x, this._y);
this._x += xs;
this._y += ys;
if (timeline.food.hitTest(this._x, this._y, true)) {
timeline.food._x = random(500)+20;
timeline.food._y = random(350)+20;
addbody();
}
for (var i = 1; i<=bodynum; i++) {
if (head.hitTest(timeline["body"+i]._x, timeline["body"+i]._y, true)) {
xs = 0;
ys = 0;
delete this.onEnterFrame;
}
}
};
};
sinit.prototype.bodyPosition = function(x, y) {
this.x = x;
this.y = y;
timeline["body0"]._x = this.x;
timeline["body0"]._y = this.y;
for (var i = bodynum; i>=1; i--) {
timeline["body"+i]._x = timeline["body"+(i-1)]._x;
timeline["body"+i]._y = timeline["body"+(i-1)]._y;
}
};
MovieClip.prototype.addbody = function() {
duplicateMovieClip(body, "body"+i, i);
i++;
bodynum = i;
};
var myob = new sinit();
myob.headPosition();
0
评论
Comments
日志分类
首页
[185]
Flash
[123]
ColdFusion
[2]
Flex
[2]
FlashMedia
[3]
RIA
[4]
Other
[43]
Python
[0]
Design
[8]