From 255883184accddb62fccb7f81235c049e8c1f602 Mon Sep 17 00:00:00 2001 From: Flavio De Stefano Date: Sun, 19 Nov 2023 23:06:00 +0100 Subject: [PATCH] better flying --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index d88ddda..abed5c9 100644 --- a/script.js +++ b/script.js @@ -175,7 +175,7 @@ function startRenderingLoop() { function flyUpEquation(t) { // Map t in radians - return 130 * t + 3 * Math.sin(20 * t); + return 130 * t + 5 * Math.sin(20 * t); } function advancePlayer(key, now) {