From 0afc8363512f0c3455277aaf5e7848b746dce804 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 02:03:02 +0200 Subject: [PATCH] Remove unused interface RuntimeSceneExit from runtime-scene-build.ts --- src/runtime-three/runtime-scene-build.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/runtime-three/runtime-scene-build.ts b/src/runtime-three/runtime-scene-build.ts index ad379fd7..a0b3f053 100644 --- a/src/runtime-three/runtime-scene-build.ts +++ b/src/runtime-three/runtime-scene-build.ts @@ -294,16 +294,6 @@ export interface RuntimeInteractable { interactionEnabled: boolean; } -export interface RuntimeSceneExit { - entityId: string; - position: Vec3; - radius: number; - prompt: string; - interactionEnabled: boolean; - targetSceneId: string; - targetEntryEntityId: string; -} - export interface RuntimePointLight { entityId: string; enabled: boolean; @@ -378,7 +368,6 @@ export interface RuntimeEntityCollection { triggerVolumes: RuntimeTriggerVolume[]; teleportTargets: RuntimeTeleportTarget[]; interactables: RuntimeInteractable[]; - sceneExits: RuntimeSceneExit[]; } export interface RuntimeSpawnPoint {