@realsee/dnalogel 3.79.2 → 3.79.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.
- package/CHANGELOG.md +4 -0
- package/dist/PanoTagPlugin/controller/Tag/PlaneTag.d.ts +7 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.js +118 -98
- package/dist/index.umd.js +18 -18
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.d.ts +7 -1
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +127 -107
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 3.79.3
|
|
4
|
+
|
|
5
|
+
- fix(PanoTagPlugin): 修复虚拟屏幕标签在 `visiblePanoIndex` 等可见性规则生效时,编辑辅助矩形和 helper 未跟随隐藏的问题;标签恢复可见且仍处于编辑态时,会自动恢复显示辅助元素
|
|
6
|
+
|
|
3
7
|
## 3.79.2
|
|
4
8
|
|
|
5
9
|
- fix(PanoTagPlugin): 修复虚拟屏幕播放按钮(buttonMesh)使用透明背景图时,透明区域会遮挡后方 mesh 导致"打洞"的问题。将 `FragmentTransparencyMaterial` 的 `transparent` 改为 `true`,并关闭 `depthWrite`
|
|
@@ -4,7 +4,6 @@ import { BaseTag } from './BaseTag';
|
|
|
4
4
|
import type { PartialObjectDeep } from '../../../typings/typings';
|
|
5
5
|
import type { Vector3 } from 'three';
|
|
6
6
|
import { Rectangle } from '../../../Sculpt/Objects/Rectangle';
|
|
7
|
-
export type PlaneTagInterface<C extends TagContentType = TagContentType> = TagInstance<C, 'Plane'>;
|
|
8
7
|
export declare class PlaneTag<C extends TagContentType = TagContentType> extends BaseTag<C, 'Plane'> {
|
|
9
8
|
rectanglePlane?: Rectangle;
|
|
10
9
|
private _floorIndex?;
|
|
@@ -28,8 +27,15 @@ export declare class PlaneTag<C extends TagContentType = TagContentType> extends
|
|
|
28
27
|
private initialSculpt;
|
|
29
28
|
editorEnable(): void;
|
|
30
29
|
editorDisable(position?: Vector3[]): void;
|
|
30
|
+
private getRectangleHelper;
|
|
31
|
+
/**
|
|
32
|
+
* 标签因为 visiblePanoIndex 等可见性规则被隐藏时,同时隐藏编辑辅助元素。
|
|
33
|
+
* 当标签重新可见且仍处于编辑态时,再恢复辅助元素显示。
|
|
34
|
+
*/
|
|
35
|
+
private syncEditorAuxiliaryVisibility;
|
|
31
36
|
private renderVideoPlane;
|
|
32
37
|
private renderImagePlane;
|
|
33
38
|
private renderEmptyPlane;
|
|
34
39
|
computeNormal(): Vector3;
|
|
35
40
|
}
|
|
41
|
+
export type PlaneTagInterface<C extends TagContentType = TagContentType> = TagInstance<C, 'Plane'>;
|