onClipEvent (enterFrame) {
if (this._x<=_parent.w) {
this._x += speed;
} else {
_x = 0;
_y = random(_parent.h);
speed = random(4)+2;
_xscale = 50+speed*4;
_yscale = 50+speed*4;
this.gotoAndPlay(int(random(this._totalFrames+1)));
this.l.gotoAndStop(int(random(4)));
}
}
这段谁能给我解释一下到底什么意思?并且帮我改一下
我所知道的意思是进入剪辑事件判断宽和坐标 this.gotoAndPlay(int(random(this._totalFrames+1))); 时间轴上的帧+1 随即 取整 然后播放到这个整数帧上
具体功能我也明白一些
我现在想要改变X和Y的大小 就是扩大整个动画播放的面积 不知道怎么改 那位高手达人可以帮忙!