From 2acf688e0e5b3119bf3da410ab657431e39aa300 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 02:03:10 +0200 Subject: [PATCH] Remove scene exit interaction handling from runtime-scene-build.ts --- src/runtime-three/runtime-scene-build.ts | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/runtime-three/runtime-scene-build.ts b/src/runtime-three/runtime-scene-build.ts index a0b3f053..fd85d4ea 100644 --- a/src/runtime-three/runtime-scene-build.ts +++ b/src/runtime-three/runtime-scene-build.ts @@ -1211,24 +1211,6 @@ function buildRuntimeControlSurface( ); } - for (const sceneExit of collections.entities.sceneExits) { - const target = createInteractionControlTargetRef( - "sceneExit", - sceneExit.entityId - ); - - targets.push( - createControlTargetDescriptor(target, ["interactionAvailability"]) - ); - resolved.discrete.push( - createResolvedInteractionEnabledState({ - target, - value: sceneExit.interactionEnabled, - source: defaultSource - }) - ); - } - for (const modelInstance of modelInstances) { const authoredModelInstance = document.modelInstances[modelInstance.instanceId];