Action Script 2 - Flash

콜백함수를 이용한 마우스 따라오기

페이지 정보

작성자 김두호 작성일 70-01-01 09:00 조회 126 댓글 0

본문

01.jpg

Instance Name : snake

02.jpg

_root.onLoad=function() {
this.snake.targetx=snake._x;
this.snake.targety=snake._y;
}
_root.snake.onMouseUp=function() {
this.targetx=_root._xmouse;
this.targety=_root._ymouse;
}
_root.snake.onEnterFrame=function() {
this._x += 0.3*(this.targetx-this._x);
this._y += 0.3*(this.targety-this._y);
}

댓글목록 0

등록된 댓글이 없습니다.

알림 0