From fca26a95d4ac62b349f2a59e61b8cb3487f979aa Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 1 Apr 2026 04:04:55 +0200 Subject: [PATCH] auto-git: [change] src/runtime-three/runtime-interaction-system.ts --- src/runtime-three/runtime-interaction-system.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime-three/runtime-interaction-system.ts b/src/runtime-three/runtime-interaction-system.ts index c8d6663e..b53472be 100644 --- a/src/runtime-three/runtime-interaction-system.ts +++ b/src/runtime-three/runtime-interaction-system.ts @@ -8,7 +8,7 @@ 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; + playAnimation(instanceId: string, clipName: string, loop: boolean | undefined, link: InteractionLink): void; stopAnimation(instanceId: string, link: InteractionLink): void; }