@realsee/dnalogel 3.44.3 → 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 +7 -0
- package/dist/PanoTagPlugin/controller/TagRender.d.ts +1 -1
- package/dist/PanoTagPlugin/utils/DebugUtil.d.ts +5 -0
- package/dist/index.cjs.js +25 -25
- package/dist/index.js +2454 -2443
- package/dist/index.umd.js +25 -25
- package/libs/CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js +39 -58
- package/libs/CruisePlugin/Move.js +1 -1
- package/libs/CruisePlugin/Work.js +1 -1
- package/libs/CruisePlugin/index.js +1 -1
- package/libs/GuideLinePlugin/Controller.js +1 -1
- package/libs/GuideLinePlugin/GuideLineItem.js +1 -1
- package/libs/GuideLinePlugin/GuideLineModeItem.js +1 -1
- package/libs/GuideLinePlugin/index.js +1 -1
- package/libs/PanoTagPlugin/controller/TagRender.d.ts +1 -1
- package/libs/PanoTagPlugin/controller/TagRender.js +68 -68
- package/libs/PanoTagPlugin/controller/index.js +38 -44
- package/libs/PanoTagPlugin/index.js +1 -1
- package/libs/PanoTagPlugin/utils/DebugUtil.d.ts +5 -0
- package/libs/PanoTagPlugin/utils/DebugUtil.js +47 -8
- package/libs/base/BasePlugin.js +1 -1
- package/libs/index.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/three/PointSelector/index.js +19 -19
- package/libs/shared-utils/three/PointSelector/utils/PointHelper.js +17 -17
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -33,7 +33,7 @@ export declare abstract class TagRender extends TagUtil {
|
|
|
33
33
|
/**
|
|
34
34
|
* @description 渲染3D贴片
|
|
35
35
|
*/
|
|
36
|
-
updateRender3DDomTag
|
|
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
|
}
|