From a06d8717061ab957ccf1ad3cf0a83fc42d6b499e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 06:18:46 +0200 Subject: [PATCH] Add interaction link management UI in App.tsx --- src/app/App.tsx | 141 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index fc83f878..026f1b31 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -2662,6 +2662,147 @@ export function App({ store, initialStatusMessage }: AppProps) { + +
+
Links
+ {selectedTriggerVolumeLinks.length === 0 ? ( +
No trigger links authored yet.
+ ) : ( +
+ {selectedTriggerVolumeLinks.map((link, index) => ( +
+
+ {`Link ${index + 1}`} + {getInteractionActionLabel(link)} +
+ +
+
+ + +
+
+ + {link.action.type === "teleportPlayer" ? ( +
+ +
+ ) : ( +
+
+ + +
+
+ )} + +
+ +
+
+ ))} +
+ )} + +
+ + +
+
) : null}