diff --git a/src/components/three/gameplay/RepairPromptVideo.tsx b/src/components/three/gameplay/RepairPromptVideo.tsx index a3ca7e1..1a25d45 100644 --- a/src/components/three/gameplay/RepairPromptVideo.tsx +++ b/src/components/three/gameplay/RepairPromptVideo.tsx @@ -1,34 +1,25 @@ -import { Html } from "@react-three/drei"; +import { WorldVideoPrompt } from "@/components/three/ui/WorldVideoPrompt"; import type { Vector3Tuple } from "@/types/three/three"; interface RepairPromptVideoProps { src: string; position?: Vector3Tuple; size?: number; + billboard?: boolean; } export function RepairPromptVideo({ src, position = [0, 1.8, 0], size = 96, + billboard = true, }: RepairPromptVideoProps): React.JSX.Element { return ( - -