@realsee/dnalogel 3.72.4-alpha.2 → 3.72.5-alpha.1

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.
@@ -12,6 +12,7 @@ import type { PartialObjectDeep } from '../../../typings/typings';
12
12
  import type { LiteralUnion } from 'type-fest';
13
13
  import type { CSS3DObjectPlus } from '../../../shared-utils/CSS3DRender/CSS3DObject';
14
14
  import type { Rectangle } from '../../../Sculpt/Objects/Rectangle';
15
+ import { Line } from '@realsee/five/line';
15
16
  /**
16
17
  * @description 标签实例
17
18
  * @property `id` 标签id
@@ -62,9 +63,11 @@ export declare abstract class BaseTag<C extends TagContentType = TagContentType,
62
63
  } | null;
63
64
  normal: Tag<C, S>['normal'];
64
65
  mediaPlane?: ImagePlane | VideoPlane;
66
+ tagNormalLine: Line;
65
67
  hooks: Subscribe<TagEvents<C>>;
66
68
  zIndex?: number;
67
69
  manuallyOperated: boolean;
70
+ normalLineLength?: number;
68
71
  play?: () => void;
69
72
  pause?: () => void;
70
73
  get five(): import("@realsee/five").Five;
@@ -114,6 +117,11 @@ export declare abstract class BaseTag<C extends TagContentType = TagContentType,
114
117
  targetMode?: 'Panorama' | 'Mapview';
115
118
  pointConfig?: Parameters<typeof lookPoint>[2];
116
119
  }): Promise<this>;
120
+ /**
121
+ * @description 获取额外的闪烁目标(子类可以重写此方法添加额外的闪烁目标,如法线等)
122
+ * @returns 额外的闪烁目标或目标数组,返回 null/undefined 表示没有额外目标
123
+ */
124
+ protected getAdditionalBlinkTargets(): any | any[] | null;
117
125
  /**
118
126
  * @description 闪烁
119
127
  */