Mediocre Maze
por uncanny78
Agrégalo a tu pantalla de inicio para acceder rápidamente
Instala este juego
Toca el botón Compartir, luego "Agregar a pantalla de inicio" para instalar este juego y tener acceso rápido.
Mediocre Maze
Etiquetas para Mediocre Maze
Descripción
Este es un juego de laberinto sencillo donde tienes que llevar el cuadrado azul al círculo rojo lo más rápido posible. Se suman puntos cada vez que chocas con una pared. Cuanto menor sea la puntuación, mejor. Este es mi primer intento con Flash y Actionscript, así que por favor sé amable y no me critiques demasiado.
Cómo jugar
Usa las flechas para navegar por el laberinto.
Comentarios
UziOunce
Nov. 28, 2010
Er,kinda SHIT
Kain
Feb. 07, 2009
For a first attempt, it is decent. If you wanted to improve upon it, make an interface when you start so that the timer doesn't begin as soon as the game loads.
JDCAce
Feb. 11, 2009
I agree with Kain about the menu, or at least delayed timer. Also, if you're good to put music, or any unnecessary audio at all, in your game, you really should give the player a mute option.
uncanny78
Feb. 11, 2009
1230567: I changed it to else if as it was sticking to the wall using ifs when you moved diagonally. It was blowing up my hittests. This is AS3 BTW.
1230567
Feb. 11, 2009
try using new if statements for the movement, else if statements just cancel everything else, so if i hold all the keys its easy to see you have
if(Key.isDown(Key.LEFT)){
box._x -= 5;
}
if(Key.isDown(Key.RIGHT)){
box._x += 5;
}
and the same thing with up and down for the y values?... just take else the else ifs XD
(this is AS2.0 incase you use AS3.0)