From fb0205e05dc6a2678e467758fe38fd648b9341df Mon Sep 17 00:00:00 2001 From: Valentin-Sosa Date: Thu, 17 Oct 2024 10:39:00 -0300 Subject: [PATCH] sonido de muerte agregado --- personajes.wlk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/personajes.wlk b/personajes.wlk index 51525b2..47782cc 100644 --- a/personajes.wlk +++ b/personajes.wlk @@ -1,5 +1,6 @@ class Personaje { var property position + var property estaMuerto = false var cantSaltos = 0 var estaSaltando = false method tipo() = "personaje" @@ -78,7 +79,9 @@ class Personaje { } method morir(){ - game.removeVisual(self) + if(!estaMuerto) game.sound("morir.ogg").play() + game.removeVisual(self) + estaMuerto = true } }