diff --git a/src/runtime-three/runtime-interaction-system.ts b/src/runtime-three/runtime-interaction-system.ts index cd9d157f..f485e488 100644 --- a/src/runtime-three/runtime-interaction-system.ts +++ b/src/runtime-three/runtime-interaction-system.ts @@ -8,6 +8,8 @@ const DEFAULT_INTERACTABLE_TARGET_RADIUS = 0.75; export interface RuntimeInteractionDispatcher { teleportPlayer(target: RuntimeTeleportTarget, link: InteractionLink): void; toggleBrushVisibility(brushId: string, visible: boolean | undefined, link: InteractionLink): void; + playAnimation(instanceId: string, clipName: string, link: InteractionLink): void; + stopAnimation(instanceId: string, link: InteractionLink): void; } export interface RuntimeInteractionPrompt {