three-cad-viewer 2.2.2 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -58559,7 +58559,9 @@ class ObjectGroup extends Group {
|
|
|
58559
58559
|
}
|
|
58560
58560
|
|
|
58561
58561
|
setShapeVisible(flag) {
|
|
58562
|
-
this.types.front
|
|
58562
|
+
if (this.types.front) {
|
|
58563
|
+
this.types.front.material.visible = flag;
|
|
58564
|
+
}
|
|
58563
58565
|
for (var t of ["clipping-0", "clipping-1", "clipping-2"]) {
|
|
58564
58566
|
if (this.types[t]) {
|
|
58565
58567
|
this.types[t].children[0].material.visible = flag;
|
|
@@ -62860,7 +62862,7 @@ class Camera {
|
|
|
62860
62862
|
}
|
|
62861
62863
|
}
|
|
62862
62864
|
|
|
62863
|
-
const version = "2.2.
|
|
62865
|
+
const version = "2.2.3";
|
|
62864
62866
|
|
|
62865
62867
|
class Viewer {
|
|
62866
62868
|
/**
|