chore: tune lighting and world plane material

This commit is contained in:
Tom Boullay
2026-05-27 00:09:26 +02:00
parent d816e4b07e
commit a6787a7ecb
2 changed files with 9 additions and 8 deletions
+2 -1
View File
@@ -11,10 +11,11 @@ export function WorldPlane(): React.JSX.Element | null {
<mesh
name="world-plane"
position={[center[0], planeY, center[2]]}
receiveShadow
rotation={[-Math.PI / 2, 0, 0]}
>
<planeGeometry args={size} />
<meshBasicMaterial color={planeColor} />
<meshStandardMaterial color={planeColor} roughness={1} />
</mesh>
);
}