From 8fd0084f7601ce9859626e3150f534392a3e04d2 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 23:37:11 +0200 Subject: [PATCH] Pass sequences to getInteractionLinkImpulseSteps --- 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 75b64741..68a4b96f 100644 --- a/src/runtime-three/runtime-interaction-system.ts +++ b/src/runtime-three/runtime-interaction-system.ts @@ -699,7 +699,7 @@ export class RuntimeInteractionSystem { continue; } - for (const step of getInteractionLinkImpulseSteps(link)) { + for (const step of getInteractionLinkImpulseSteps(link, runtimeScene.sequences)) { this.dispatchSequenceStep(step, link, runtimeScene, dispatcher); } }