From 6df5672d654fc02c208c8d9a26aab6d4e850cc08 Mon Sep 17 00:00:00 2001 From: GabrielTrbl <144853954+GabrielTrbl@users.noreply.github.com> Date: Mon, 27 Nov 2023 19:26:59 -0300 Subject: [PATCH] Update main.js Cambio 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 7667019..143b317 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 () *1.5 + 1; + note.speed = Math.random () *1.25 + 1; notes.push (note); };