From 410fa788c5e7af9b0b26c35708eab4fbefe31c70 Mon Sep 17 00:00:00 2001 From: FrancoVinaccia Date: Fri, 18 Oct 2024 13:26:02 -0300 Subject: [PATCH] funciona, falta centrar --- assets/{pantallaInicio.png => pantalla.png} | Bin juegoAjedrez2.wlk | 14 ++++++-------- 2 files changed, 6 insertions(+), 8 deletions(-) rename assets/{pantallaInicio.png => pantalla.png} (100%) diff --git a/assets/pantallaInicio.png b/assets/pantalla.png similarity index 100% rename from assets/pantallaInicio.png rename to assets/pantalla.png diff --git a/juegoAjedrez2.wlk b/juegoAjedrez2.wlk index fb5214c..a27c615 100644 --- a/juegoAjedrez2.wlk +++ b/juegoAjedrez2.wlk @@ -11,9 +11,7 @@ object juegoAjedrez2{ method iniciar(){ game.removeVisual(pantallaInicio) game.addVisualCharacter(reyNegro) - game.boardGround("fondo.png") spawnEnemigo.comenzarSpawn() - keyboard.w().onPressDo({reyNegro.moverArriba()}) keyboard.s().onPressDo({reyNegro.moverAbajo()}) keyboard.space().onPressDo({reyNegro.disparar()}) @@ -25,12 +23,12 @@ object juegoAjedrez2{ method pantallaInicio() { game.height(5) game.width(9) - game.addVisualCharacter(pantallaInicio) - juegoPausado = true - reyNegro.elJugadorPauso(verdadero) - self.iniciar() + game.boardGround("fondo.png") + game.addVisualCharacter(pantallaInicio) + keyboard.i().onPressDo({self.iniciar()}) } + method pausarJuego() { juegoPausado = true game.say(self, "Presione R para reiniciar el juego") @@ -46,8 +44,8 @@ object juegoAjedrez2{ } object pantallaInicio { - method position() = game.center() - method image() = "pantallaInicio.png" + method position() = game.at(0,0) + method image() = "pantalla.png" } object reyNegro {