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

작성자 정보

  • 작성자 김두호
  • 아이피 211.♡.121.189
  • 작성일

컨텐츠 정보

본문

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
등록된 댓글이 없습니다.
Total 35 / 1 Page
번호
제목
이름