From 6154f15274ead72e60ef3c8a9c98504bbb3efe0e Mon Sep 17 00:00:00 2001 From: David espinosa <104380606+davespser@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:47:01 +0100 Subject: [PATCH] Update ground.js --- js/ground.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ground.js b/js/ground.js index ab4ad4c2..578a6ad1 100644 --- a/js/ground.js +++ b/js/ground.js @@ -19,7 +19,7 @@ export function createFloor() { }); // Crear geometrĂ­a del terreno - const floorGeometry = new THREE.PlaneGeometry(50, 50, 256, 256); // Segmentos altos para un desplazamiento suave + const floorGeometry = new THREE.PlaneGeometry(800, 800, 4096, 4096); // Segmentos altos para un desplazamiento suave // Crear la malla const floor = new THREE.Mesh(floorGeometry, floorMaterial);