Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cresythe authored Jan 4, 2024
1 parent 6e997a1 commit da66d57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fogTesting.html
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit da66d57

Please sign in to comment.