From a30636ebeca3e2949c021d165b199d3576c36d96 Mon Sep 17 00:00:00 2001 From: GabrielTrbl <144853954+GabrielTrbl@users.noreply.github.com> Date: Mon, 27 Nov 2023 19:24:29 -0300 Subject: [PATCH] Update main.js Cambio en la velocidad --- Game/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Game/js/main.js b/Game/js/main.js index 209dec5..7667019 100644 --- a/Game/js/main.js +++ b/Game/js/main.js @@ -135,7 +135,7 @@ function spawnNote() { // genera una nota y la agrega al arreglo note.y = 0; note.width = 24; note.height = 24; - note.speed = Math.random () *2 + 1; + note.speed = Math.random () *1.5 + 1; notes.push (note); };