diff --git a/src/runtime-three/runtime-interaction-system.ts b/src/runtime-three/runtime-interaction-system.ts index 25323e58..61cb640b 100644 --- a/src/runtime-three/runtime-interaction-system.ts +++ b/src/runtime-three/runtime-interaction-system.ts @@ -759,13 +759,6 @@ export class RuntimeInteractionSystem { } return; } - case "toggleVisibility": - dispatcher.toggleBrushVisibility( - step.targetBrushId, - step.visible, - link - ); - return; case "setVisibility": if (dispatcher.setVisibility !== undefined) { dispatcher.setVisibility(step.target, step.mode, link); @@ -784,7 +777,6 @@ export class RuntimeInteractionSystem { throw new Error( "Runtime visibility steps targeting model instances require dispatcher.setVisibility support." ); - return; case "startDialogue": dispatcher.startDialogue(step.dialogueId, { kind: "interactionLink",