feat(map): add terrain boundary collision

This commit is contained in:
Tom Boullay
2026-05-26 22:06:13 +02:00
parent fd558db034
commit 1c27d55e5a
3 changed files with 48 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Vector3Tuple } from "@/types/three/three";
export const TERRAIN_BOUNDARY_CONFIG = {
enabled: true,
center: [-10, 8, -2] as Vector3Tuple,
radius: 135,
height: 28,
thickness: 3,
segments: 48,
};