Remove scene exit handling and related entities

This commit is contained in:
2026-04-15 02:02:08 +02:00
parent 08c64ebe0f
commit 1db3449be4
4 changed files with 27 additions and 40 deletions

View File

@@ -6,8 +6,7 @@ export const CONTROL_ENTITY_TARGET_KINDS = [
"soundEmitter"
] as const;
export const CONTROL_INTERACTION_TARGET_KINDS = [
"interactable",
"sceneExit"
"interactable"
] as const;
export const CONTROL_CAPABILITY_KINDS = [
"projectTimePause",
@@ -1874,8 +1873,6 @@ function formatTargetKindLabel(
return "Sound Emitter";
case "interactable":
return "Interactable";
case "sceneExit":
return "Scene Exit";
}
}