@realsee/dnalogel 3.77.4 → 3.77.6
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 +20 -11
- package/dist/DigitalPerformancePlugin/controller/index.d.ts +224 -0
- package/dist/DigitalPerformancePlugin/core/DigitalHuman.d.ts +55 -0
- package/dist/DigitalPerformancePlugin/core/DigitalPlayground.d.ts +40 -0
- package/dist/DigitalPerformancePlugin/core/DigitalStateMachine.d.ts +150 -0
- package/dist/DigitalPerformancePlugin/core/Trace.d.ts +9 -0
- package/dist/DigitalPerformancePlugin/index.d.ts +11 -0
- package/dist/DigitalPerformancePlugin/mock.d.ts +76 -0
- package/dist/DigitalPerformancePlugin/typings/index.d.ts +79 -0
- package/dist/PanoTagPlugin/controller/Tag/BaseTag.d.ts +5 -1
- package/dist/PanoTagPlugin/controller/Tag/BoxTag.d.ts +119 -0
- package/dist/PanoTagPlugin/controller/Tag/MaskTag.d.ts +257 -0
- package/dist/PanoTagPlugin/controller/Tag/MaskTag.shaders.d.ts +10 -0
- package/dist/PanoTagPlugin/controller/Tag/PolygonTag.d.ts +112 -0
- package/dist/PanoTagPlugin/controller/TagRender.d.ts +1 -1
- package/dist/PanoTagPlugin/controller/index.d.ts +55 -2
- package/dist/PanoTagPlugin/typings/controller.d.ts +10 -0
- package/dist/PanoTagPlugin/typings/tag/Tag.d.ts +8 -3
- package/dist/PanoTagPlugin/typings/tag/Utils.d.ts +50 -1
- package/dist/PanoTagPlugin/utils/sculptDataToBoxPosition.d.ts +6 -0
- package/dist/PanoTagPlugin/utils/tag/tagCheck.d.ts +6 -0
- package/dist/PanoTagPlugin/utils/tagPosition.d.ts +12 -3
- package/dist/index.cjs.js +188 -92
- package/dist/index.d.ts +1 -0
- package/dist/index.js +17508 -14249
- package/dist/index.umd.js +184 -88
- package/libs/CruisePlugin/Move.js +7 -2
- package/libs/CruisePlugin/Work.js +7 -2
- package/libs/CruisePlugin/index.js +11 -6
- package/libs/DigitalPerformancePlugin/controller/index.d.ts +2 -2
- package/libs/DigitalPerformancePlugin/controller/index.js +164 -173
- package/libs/DigitalPerformancePlugin/core/DigitalHuman.d.ts +16 -6
- package/libs/DigitalPerformancePlugin/core/DigitalHuman.js +128 -102
- package/libs/DigitalPerformancePlugin/core/DigitalPlayground.d.ts +11 -5
- package/libs/DigitalPerformancePlugin/core/DigitalPlayground.js +84 -74
- package/libs/DigitalPerformancePlugin/core/DigitalStateMachine.d.ts +7 -0
- package/libs/DigitalPerformancePlugin/mock.d.ts +6 -0
- package/libs/DigitalPerformancePlugin/mock.js +272 -274
- package/libs/GuideLinePlugin/Controller.js +9 -4
- package/libs/GuideLinePlugin/GuideLineItem.js +7 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +7 -2
- package/libs/GuideLinePlugin/index.js +11 -6
- package/libs/PanoTagPlugin/Components/TagItem.js +122 -122
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.d.ts +5 -1
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +320 -289
- package/libs/PanoTagPlugin/controller/Tag/BoxTag.d.ts +119 -0
- package/libs/PanoTagPlugin/controller/Tag/BoxTag.js +515 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.d.ts +257 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.js +815 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.shaders.d.ts +10 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.shaders.js +94 -0
- package/libs/PanoTagPlugin/controller/Tag/PolygonTag.d.ts +112 -0
- package/libs/PanoTagPlugin/controller/Tag/PolygonTag.js +478 -0
- package/libs/PanoTagPlugin/controller/TagRender.d.ts +1 -1
- package/libs/PanoTagPlugin/controller/TagUtil.js +19 -17
- package/libs/PanoTagPlugin/controller/index.d.ts +55 -2
- package/libs/PanoTagPlugin/controller/index.js +261 -148
- package/libs/PanoTagPlugin/index.js +16 -11
- package/libs/PanoTagPlugin/typings/controller.d.ts +10 -0
- package/libs/PanoTagPlugin/typings/tag/Tag.d.ts +8 -3
- package/libs/PanoTagPlugin/typings/tag/Utils.d.ts +50 -1
- package/libs/PanoTagPlugin/utils/addDebugPoints.js +27 -13
- package/libs/PanoTagPlugin/utils/index.js +29 -26
- package/libs/PanoTagPlugin/utils/sculptDataToBoxPosition.d.ts +6 -0
- package/libs/PanoTagPlugin/utils/sculptDataToBoxPosition.js +18 -0
- package/libs/PanoTagPlugin/utils/tag/tagCheck.d.ts +6 -0
- package/libs/PanoTagPlugin/utils/tag/tagCheck.js +26 -14
- package/libs/PanoTagPlugin/utils/tagPosition.d.ts +12 -3
- package/libs/PanoTagPlugin/utils/tagPosition.js +49 -16
- package/libs/base/BasePlugin.js +1 -1
- package/libs/index.d.ts +1 -0
- package/libs/index.js +166 -150
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +2 -2
|
@@ -334,6 +334,11 @@ import "../Sculpt/Meshes/Box.js";
|
|
|
334
334
|
import "../shared-utils/forReverseEach.js";
|
|
335
335
|
import "../Sculpt/Objects/Line/index.js";
|
|
336
336
|
import "../shared-utils/five/getFloorMesh.js";
|
|
337
|
+
import "../PanoTagPlugin/controller/Tag/BoxTag.js";
|
|
338
|
+
import "../PanoTagPlugin/utils/sculptDataToBoxPosition.js";
|
|
339
|
+
import "../PanoTagPlugin/controller/Tag/PolygonTag.js";
|
|
340
|
+
import "../PanoTagPlugin/controller/Tag/MaskTag.js";
|
|
341
|
+
import "../PanoTagPlugin/controller/Tag/MaskTag.shaders.js";
|
|
337
342
|
import "../PanoTagPlugin/Components/TagContainer.js";
|
|
338
343
|
import "../PanoTagPlugin/Components/TagItem.js";
|
|
339
344
|
import "../PanoTagPlugin/Components/Common/TagPoint.js";
|
|
@@ -366,7 +371,7 @@ import "./utils/coordinatesToVector.js";
|
|
|
366
371
|
import "./utils/safeCall.js";
|
|
367
372
|
import "./utils/sleep.js";
|
|
368
373
|
import "../shared-utils/five/fiveLoaded.js";
|
|
369
|
-
class
|
|
374
|
+
class oe extends z {
|
|
370
375
|
constructor(t, r) {
|
|
371
376
|
var h;
|
|
372
377
|
super(t, r);
|
|
@@ -474,5 +479,5 @@ class Zp extends z {
|
|
|
474
479
|
}
|
|
475
480
|
}
|
|
476
481
|
export {
|
|
477
|
-
|
|
482
|
+
oe as default
|
|
478
483
|
};
|
|
@@ -320,6 +320,11 @@ import "../Sculpt/Meshes/Box.js";
|
|
|
320
320
|
import "../shared-utils/forReverseEach.js";
|
|
321
321
|
import "../Sculpt/Objects/Line/index.js";
|
|
322
322
|
import "../shared-utils/five/getFloorMesh.js";
|
|
323
|
+
import "../PanoTagPlugin/controller/Tag/BoxTag.js";
|
|
324
|
+
import "../PanoTagPlugin/utils/sculptDataToBoxPosition.js";
|
|
325
|
+
import "../PanoTagPlugin/controller/Tag/PolygonTag.js";
|
|
326
|
+
import "../PanoTagPlugin/controller/Tag/MaskTag.js";
|
|
327
|
+
import "../PanoTagPlugin/controller/Tag/MaskTag.shaders.js";
|
|
323
328
|
import "../PanoTagPlugin/Components/TagContainer.js";
|
|
324
329
|
import "../PanoTagPlugin/Components/TagItem.js";
|
|
325
330
|
import "../PanoTagPlugin/Components/Common/TagPoint.js";
|
|
@@ -366,7 +371,7 @@ import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
|
366
371
|
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
367
372
|
import "./Work.js";
|
|
368
373
|
import "./utils/coordinatesToVector.js";
|
|
369
|
-
class
|
|
374
|
+
class um extends V {
|
|
370
375
|
constructor(t, i) {
|
|
371
376
|
super(t, i);
|
|
372
377
|
C(this, "state", {
|
|
@@ -841,5 +846,5 @@ class am extends V {
|
|
|
841
846
|
}
|
|
842
847
|
}
|
|
843
848
|
export {
|
|
844
|
-
|
|
849
|
+
um as default
|
|
845
850
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { typing as
|
|
1
|
+
import { typing as qm } from "./typing/index.js";
|
|
2
2
|
import t from "./Work.js";
|
|
3
3
|
import i from "./Move.js";
|
|
4
4
|
import "../GuideLinePlugin/index.js";
|
|
@@ -306,6 +306,11 @@ import "../Sculpt/Meshes/Box.js";
|
|
|
306
306
|
import "../shared-utils/forReverseEach.js";
|
|
307
307
|
import "../Sculpt/Objects/Line/index.js";
|
|
308
308
|
import "../shared-utils/five/getFloorMesh.js";
|
|
309
|
+
import "../PanoTagPlugin/controller/Tag/BoxTag.js";
|
|
310
|
+
import "../PanoTagPlugin/utils/sculptDataToBoxPosition.js";
|
|
311
|
+
import "../PanoTagPlugin/controller/Tag/PolygonTag.js";
|
|
312
|
+
import "../PanoTagPlugin/controller/Tag/MaskTag.js";
|
|
313
|
+
import "../PanoTagPlugin/controller/Tag/MaskTag.shaders.js";
|
|
309
314
|
import "../PanoTagPlugin/Components/TagContainer.js";
|
|
310
315
|
import "../PanoTagPlugin/Components/TagItem.js";
|
|
311
316
|
import "../PanoTagPlugin/Components/Common/TagPoint.js";
|
|
@@ -338,13 +343,13 @@ import "./utils/sleep.js";
|
|
|
338
343
|
import "../shared-utils/five/fiveLoaded.js";
|
|
339
344
|
import "./BaseController.js";
|
|
340
345
|
import "./utils/getFiveStateOnCurve.js";
|
|
341
|
-
const
|
|
346
|
+
const Wm = (o, r) => new t(o, r), bm = (o, r) => new i(o, r);
|
|
342
347
|
export {
|
|
343
|
-
|
|
348
|
+
Wm as CruisePlugin,
|
|
344
349
|
t as CruisePluginController,
|
|
345
|
-
|
|
350
|
+
qm as CruisePluginTypes,
|
|
346
351
|
i as MoveController,
|
|
347
|
-
|
|
352
|
+
bm as MovePlugin,
|
|
348
353
|
t as WalkController,
|
|
349
|
-
|
|
354
|
+
Wm as default
|
|
350
355
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Five } from '@realsee/five';
|
|
2
2
|
import { DigitalPlayground } from '../core/DigitalPlayground';
|
|
3
|
-
import { DigitalHuman } from '../core/DigitalHuman';
|
|
3
|
+
import type { DigitalHuman } from '../core/DigitalHuman';
|
|
4
4
|
import type { DigitalScript, DigitalChapter, DigitalPerformancePluginConfig, GlobalProgress, ChapterTimeInfo, ChapterLocation, ProgressListener } from '../typings';
|
|
5
5
|
export default class DigitalPerformancePluginController {
|
|
6
6
|
five: Five;
|
|
@@ -23,11 +23,11 @@ export default class DigitalPerformancePluginController {
|
|
|
23
23
|
private _autoPlayOnNaturalEnd;
|
|
24
24
|
private playingPlayersListeners;
|
|
25
25
|
constructor(five: Five, config?: DigitalPerformancePluginConfig);
|
|
26
|
-
private init;
|
|
27
26
|
/**
|
|
28
27
|
* 加载剧本数据
|
|
29
28
|
*/
|
|
30
29
|
loadScript(script: DigitalScript): Promise<void>;
|
|
30
|
+
private init;
|
|
31
31
|
/**
|
|
32
32
|
* 预加载资源
|
|
33
33
|
*/
|