diff --git a/src/interface/utils.js b/src/interface/utils.js index 5a8fca0..eb12020 100644 --- a/src/interface/utils.js +++ b/src/interface/utils.js @@ -43,7 +43,7 @@ export function createScene(canvas, props, state) { const light = new THREE.AmbientLight(0x808080); scene.add(light); - const mesh = new THREE.Mesh(geometry, new THREE.MeshStandardMaterial({ color: 0x2194ce })); + const mesh = new THREE.Mesh(geometry, new THREE.MeshStandardMaterial({ color: 0x2194ce, side: THREE.DoubleSide })); placeOnGround(mesh); scene.add(mesh);