feat(ebike): play narrator cues during repair flow (scan hint, diagnostic, completion)

This commit is contained in:
Tom Boullay
2026-06-03 02:11:45 +02:00
parent 8b0dd31014
commit 47b69b01d2
3 changed files with 67 additions and 0 deletions
+2
View File
@@ -4,6 +4,7 @@ import { Canvas } from "@react-three/fiber";
import * as THREE from "three";
import { DebugPerf } from "@/components/debug/DebugPerf";
import { EbikeIntroSequence } from "@/components/game/EbikeIntroSequence";
import { EbikeRepairNarrator } from "@/components/game/EbikeRepairNarrator";
import { AppLoadingIndicator } from "@/components/ui/AppLoadingIndicator";
import { DialogMessage } from "@/components/ui/DialogMessage";
import { GameUI } from "@/components/ui/GameUI";
@@ -259,6 +260,7 @@ export function HomePage(): React.JSX.Element | null {
) : null}
{renderIntroOverlay()}
<EbikeIntroSequence />
<EbikeRepairNarrator />
</HandTrackingProvider>
);
}