From 8dfc71de4f311d0e042e5ead50e7d9689cebdbfd Mon Sep 17 00:00:00 2001 From: CrunchyMcMunchy33 Date: Thu, 15 Jan 2026 19:07:30 +0000 Subject: [PATCH] lower jump duration --- Crossy Road code here/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crossy Road code here/index.js b/Crossy Road code here/index.js index 46b8fd6..8cceb68 100644 --- a/Crossy Road code here/index.js +++ b/Crossy Road code here/index.js @@ -184,7 +184,7 @@ class Chicken{ jump(direction){ if (!this.isMoving && !gameOver){ - let duration = 0.4; + let duration = 0.2; let dX = 0, dY = 1, dZ = 0; let currentX = -columns/2 * cellWidth + cellWidth/2 + this.currentColumn * cellWidth; let currentZ = -this.currentLane * cellWidth;