add: trigger dialogue with timecode

This commit is contained in:
Tom Boullay
2026-05-10 00:10:16 +01:00
parent 53fdf3cb1e
commit 0fbf6bfa0e
2 changed files with 61 additions and 0 deletions
+2
View File
@@ -10,6 +10,7 @@ import { DebugCameraControls } from "@/components/debug/scene/DebugCameraControl
import { DebugHelpers } from "@/components/debug/scene/DebugHelpers";
import { HandTrackingGlove } from "@/components/three/handTracking/HandTrackingGlove";
import { Environment } from "@/world/Environment";
import { GameDialogues } from "@/world/GameDialogues";
import { GameMusic } from "@/world/GameMusic";
import { Lighting } from "@/world/Lighting";
import { GameMap } from "@/world/GameMap";
@@ -42,6 +43,7 @@ export function World(): React.JSX.Element {
{sceneMode === "game" ? (
<>
<GameMusic />
<GameDialogues />
<GameMap onOctreeReady={setOctree} />
<GameStageContent />
</>