auto-git:

[change] src/viewport-three/viewport-host.ts
This commit is contained in:
2026-05-13 13:25:06 +02:00
parent 61a79c7034
commit cbeec663ab

View File

@@ -1489,6 +1489,17 @@ export class ViewportHost {
this.addCameraRigRailPreviewPathIds(affectedIds, previousSelection);
this.addCameraRigRailPreviewPathIds(affectedIds, selection);
this.refreshSelectionPresentation(affectedIds);
if (
this.currentDocument !== null &&
(affectedIds.pathIds.size > 0 ||
previousSelection.kind === "pathPoint" ||
previousSelection.kind === "pathPoints" ||
selection.kind === "pathPoint" ||
selection.kind === "pathPoints")
) {
this.rebuildPathJunctionMarkers(this.currentDocument, selection);
}
}
updateDocument(document: SceneDocument) {