AS3, line from corner follow mouse tut
by Userguy
홈 화면에 추가하여 빠르게 실행하세요
이 게임 설치
공유 버튼을 누르고 "홈 화면에 추가"를 선택하면 빠르게 이 게임에 접속할 수 있습니다.
AS3, line from corner follow mouse tut
AS3, line from corner follow mouse tut의 태그
설명
Make a line that is following your mouse.
플레이 방법
Use your eyes.
댓글
cyber6
Apr. 24, 2010
It's not meant to be a game, as pointed out below me. It's actually quite an interesting idea, so before rating it badly, try it out yourself.
YaGames
Apr. 21, 2010
This is not a game. (That doesn't warrant flagging.) At least the other tuts have some interactivity. (This does.)
symiily
Jun. 27, 2010
To all those guys who says this is not a game, there is actually a own category for tutorials....
gulli_boy
Jun. 24, 2010
just write this:
graphics.lineStyle(2, 0x000000, 1);
stage.addEventListener(MouseEvent.MOUSE_MOVE,moveMouse);
function moveMouse(evt:MouseEvent){
graphics.clear();
graphics.lineStyle(2, 0x000000, 1);
graphics.moveTo(0,0);
graphics.lineTo(mouseX,mouseY);
}
gulli_boy
Jun. 24, 2010
works perfet! ty! userguy!;)