feat: add the map

This commit is contained in:
Tom Boullay
2026-04-15 16:09:02 +02:00
parent aded4ee209
commit 9e9ac8066c
24 changed files with 386 additions and 585 deletions
+20
View File
@@ -0,0 +1,20 @@
import { Suspense } from "react";
import { DebugCameraControls } from "@/debug/scene/DebugCameraControls";
import { DebugHelpers } from "@/debug/scene/DebugHelpers";
import { Environment } from "@/world/Environment";
import { Lighting } from "@/world/Lighting";
import { Map } from "@/world/Map";
export function World(): React.JSX.Element {
return (
<>
<Environment />
<Lighting />
<DebugHelpers />
<DebugCameraControls />
<Suspense fallback={null}>
<Map />
</Suspense>
</>
);
}