fix(environment): disable fog by default

This commit is contained in:
Tom Boullay
2026-05-27 01:01:25 +02:00
parent 25e0f7e062
commit b8cff43545
4 changed files with 30 additions and 14 deletions
+7 -1
View File
@@ -391,7 +391,13 @@ function FallbackMapNode({ node }: { node: MapNode }): React.JSX.Element {
const normalizedScale = normalizeMapScale(scale);
return (
<mesh position={position} rotation={rotation} scale={normalizedScale}>
<mesh
castShadow
position={position}
receiveShadow
rotation={rotation}
scale={normalizedScale}
>
<boxGeometry args={[1, 1, 1]} />
<meshStandardMaterial color="#64748b" wireframe />
</mesh>