@realsee/dnalogel 3.44.4 → 3.44.5

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 CHANGED
@@ -1,4 +1,7 @@
1
1
  # CHANGELOG
2
+ ## 3.44.5
3
+ - chore(PanoTagPlugin): 开启 `debug` 时,控制台输出函数调用日志。
4
+
2
5
  ## 3.44.4
3
6
  - fix(PointSelector): 修复缩放fov时,放大镜没有更新位置的问题。
4
7
  - fix(PointSelector): 修复 `disable` 时,坐标点外围圆环没有隐藏的问题。
@@ -33,7 +33,7 @@ export declare abstract class TagRender extends TagUtil {
33
33
  /**
34
34
  * @description 渲染3D贴片
35
35
  */
36
- updateRender3DDomTag: (tag?: TagInstance | TagInstance[]) => void;
36
+ updateRender3DDomTag(tag?: TagInstance | TagInstance[]): void;
37
37
  /** 更新标签中多媒体面片的位置
38
38
  * @param tag 标签
39
39
  * @param model 模型
@@ -1,6 +1,11 @@
1
1
  import type PanoTagPluginController from '../controller';
2
2
  export declare class DebugUtil {
3
3
  plugin: PanoTagPluginController;
4
+ get debug(): boolean;
5
+ private logBinded;
4
6
  constructor(plugin: PanoTagPluginController);
7
+ addDebugPoints(): void;
8
+ bindLog(): void;
9
+ addLog(functionName: string, ...args: any[]): void;
5
10
  private closeIntersectRaycaster;
6
11
  }