@realsee/dnalogel 3.79.1 → 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.
@@ -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'>;