From da66d57ce6de2c0c31c0726421d5056e1be6ed59 Mon Sep 17 00:00:00 2001 From: Corey <106111373+Cresythe@users.noreply.github.com> Date: Thu, 4 Jan 2024 11:23:51 -0500 Subject: [PATCH] bug fixes --- fogTesting.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fogTesting.html b/fogTesting.html index 5c42aff..09505a8 100644 --- a/fogTesting.html +++ b/fogTesting.html @@ -55,8 +55,8 @@ scene.add(ambientLight); //Plane - let PlaneGeo = new THREE.PlaneGeometry(2000,2000); - PlaneGeo.rotateX(-Math.PI /2); + let planeGeo = new THREE.PlaneGeometry(2000,2000); + planeGeo.rotateX(-Math.PI /2); const material = new THREE.MeshStandardMaterial(0x7a7a52); let floor1 = new THREE.Mesh(planeGeo, material); floor1.position.y = -50;