Estoy realizando un juego de Pinchar globos.
Pero me gastaría agregar un tiempo limite.
Al comenzar el juego en por ejemplo 60 segundo ver cuantos globos puedo reventar y al finalizar ese tiempo salga un mensaje de Juego finalizado y se pueda reiniciar la escena.
Estuve investigando en el foro y el manual.
En el manual esta la opción de finalizar tarea.
En el foro esta esta respuesta, la cual intente implementar este código en mi juego pero me marca error.
iniciar() {
this.actualizar_texto();
}
cada_segundo() {
if (this.tiempo > 0) {
this.tiempo--;
this.actualizar_texto();
} else {
this.decir("Tiempo cumplido!");
this.eliminar()
}
}
actualizar_texto() {
this.texto = `TIEMPO RESTANTE: ${this.tiempo}`;
}
}
He insertado el actor texto luego he intentado de varias formas de hacer el código y hasta ahora no lo consigo.
Agradecería la ayuda.
Marisol