diff --git a/src/app/App.tsx b/src/app/App.tsx index ff2bf47b..9aec1984 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -12293,6 +12293,233 @@ export function App({ store, initialStatusMessage }: AppProps) { + ) : selectedPath !== null ? ( + <> +
+
Path
+
+ {getPathLabelById(selectedPath.id, pathList)} +
+
+ {selectedPath.points.length} point + {selectedPath.points.length === 1 ? "" : "s"} ยท{" "} + {selectedPath.loop ? "Looping" : "Open"} +
+
+ +
+
Authored State
+ + +
+ Hidden paths stay authored but disappear from the editor + viewport. Disabled paths are omitted from the runtime + path registry. +
+
+ +
+
Name
+ +
+ +
+
Loop
+ +
+ +
+
Points
+
+ Edit authored point positions directly. Keep at least{" "} + {MIN_SCENE_PATH_POINT_COUNT} points. +
+ {selectedPath.points.map((point, pointIndex) => ( +
+
Point {pointIndex + 1}
+
{point.id}
+
+ + + +
+
+ +
+
+ ))} +
+ + +
+
+ ) : selectedEntity !== null ? ( <>