Merge branch 'develop' into feat/main-feature

This commit is contained in:
Tom Boullay
2026-04-30 15:48:35 +02:00
17 changed files with 808 additions and 18 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ export function DocsAnimationPage(): React.JSX.Element {
<DocsDocument
content={animation}
frContent={animation}
meta="07"
meta="08"
title="Animation & 3D Model System"
/>
);
+1 -1
View File
@@ -7,7 +7,7 @@ export function DocsEditorPage(): React.JSX.Element {
<DocsDocument
content={editor}
frContent={editorFr}
meta="08"
meta="09"
title="Editor User Guide"
/>
);
+14
View File
@@ -0,0 +1,14 @@
import zustand from "../../../../docs/technical/zustand.md?raw";
import { DocsDocument } from "@/components/docs/DocsDocument";
import { zustandFr } from "@/data/docs/docsTranslations";
export function DocsZustandPage(): React.JSX.Element {
return (
<DocsDocument
content={zustand}
frContent={zustandFr}
meta="05"
title="Zustand Game State"
/>
);
}
+3 -9
View File
@@ -1,11 +1,8 @@
import { Suspense } from "react";
import { Canvas } from "@react-three/fiber";
import { Crosshair } from "@/components/ui/Crosshair";
import { HandTrackingOverlay } from "@/components/ui/HandTrackingOverlay";
import { HandTrackingProvider } from "@/providers/gameplay/HandTrackingProvider";
import { HandTrackingVisualizer } from "@/components/ui/HandTrackingVisualizer";
import { InteractPrompt } from "@/components/ui/InteractPrompt";
import { DebugPerf } from "@/components/debug/DebugPerf";
import { GameUI } from "@/components/ui/GameUI";
import { HandTrackingProvider } from "@/providers/gameplay/HandTrackingProvider";
import { World } from "@/world/World";
export function HomePage(): React.JSX.Element {
@@ -17,10 +14,7 @@ export function HomePage(): React.JSX.Element {
<DebugPerf />
</Suspense>
</Canvas>
<Crosshair />
<InteractPrompt />
<HandTrackingVisualizer />
<HandTrackingOverlay />
<GameUI />
</HandTrackingProvider>
);
}