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}