AS3, line from corner follow mouse tut

AS3, line from corner follow mouse tut

por Userguy
Reportar un error
Marcar juego
Loading ad...
Loading ad...

AS3, line from corner follow mouse tut

Valoración:
2.1
Lanzamiento: April 21, 2010
Última actualización: April 21, 2010
Desarrollador: Userguy

Etiquetas para AS3, line from corner follow mouse tut

Descripción

Haz una línea que siga tu ratón.

Cómo jugar

Usa tus ojos.

Comentarios

0/1000
deleteduser avatar

deleteduser

Apr. 24, 2010

3
0

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 avatar

YaGames

Apr. 21, 2010

2
0

This is not a game. (That doesn't warrant flagging.) At least the other tuts have some interactivity. (This does.)

symiily avatar

symiily

Jun. 27, 2010

1
0

To all those guys who says this is not a game, there is actually a own category for tutorials....

gulli_boy avatar

gulli_boy

Jun. 24, 2010

1
0

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 avatar

gulli_boy

Jun. 24, 2010

1
0

works perfet! ty! userguy!;)