diff --git a/src/app/App.tsx b/src/app/App.tsx index e067619c..fbce215f 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -12475,12 +12475,27 @@ export function App({ store, initialStatusMessage }: AppProps) {
Points
Edit authored point positions directly. Keep at least{" "} - {MIN_SCENE_PATH_POINT_COUNT} points. + {MIN_SCENE_PATH_POINT_COUNT} points. `Shift+W` appends a + new point to the end of the selected path.
+ {selectedPathPointIndex === null ? null : ( +
+ Selected in viewport: Point {selectedPathPointIndex + 1} +
+ )} {selectedPath.points.map((point, pointIndex) => (
Point {pointIndex + 1}
-
{point.id}
+
+ {point.id} + {isPathPointSelected( + editorState.selection, + selectedPath.id, + point.id + ) + ? " ยท Selected in viewport" + : ""} +