Co-authored-by: Reifonas <211114984+Reifonas@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-05-24 19:28:44 +00:00
parent e5e1eac733
commit 000d4d05e8
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -190,6 +190,9 @@ function GLBModel({ sceneModel, isActive }: { sceneModel: SceneModel; isActive:
const lineMat = new THREE.LineBasicMaterial({
color: measureMode ? '#00f3ff' : wireframeColor,
linewidth: measureMode ? 2 : wireframeThickness,
toneMapped: false,
transparent: true,
opacity: 0.95,
});
const lineSegments = new THREE.LineSegments(edgesGeo, lineMat);
lineSegments.userData.__edgeLine = true;