@realsee/dnalogel 3.53.0 → 3.53.2
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.
- package/CHANGELOG.md +6 -0
- package/dist/GuideLinePlugin/GuideLineModeItem.d.ts +1 -1
- package/dist/index.cjs.js +4 -4
- package/dist/index.js +9 -10
- package/dist/index.umd.js +4 -4
- package/dist/shared-utils/five/FivePuppet.d.ts +1 -0
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -3
- package/libs/GuideLinePlugin/GuideLineModeItem.d.ts +1 -1
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/five/FivePuppet.d.ts +1 -0
- package/libs/shared-utils/five/FivePuppet.js +32 -33
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -32,6 +32,7 @@ declare class GuideLineModeItem {
|
|
|
32
32
|
readonly group: THREE.Group;
|
|
33
33
|
readonly meshWithDepthTest: THREE.Mesh<THREE.BufferGeometry, THREE.ShaderMaterial>;
|
|
34
34
|
readonly meshWithoutDepthTest: THREE.Mesh<THREE.BufferGeometry, THREE.ShaderMaterial>;
|
|
35
|
+
visible: boolean | null;
|
|
35
36
|
private five;
|
|
36
37
|
private mode;
|
|
37
38
|
private _curvePath;
|
|
@@ -43,7 +44,6 @@ declare class GuideLineModeItem {
|
|
|
43
44
|
private width;
|
|
44
45
|
private unitLength;
|
|
45
46
|
private _visibleFloorIndexes;
|
|
46
|
-
private visible;
|
|
47
47
|
/** Five Mode 是否满足 */
|
|
48
48
|
private modeVisible;
|
|
49
49
|
/** 楼层是否满足展示条件 */
|