@realsee/dnalogel 3.47.6 → 3.47.8
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 +6 -0
- package/dist/PanoTagPlugin/controller/Tag/PointTag.d.ts +0 -1
- package/dist/index.cjs.js +21 -21
- package/dist/index.js +916 -917
- package/dist/index.umd.js +23 -23
- package/dist/shared-utils/tag.d.ts +1 -0
- package/libs/AreaMakerPlugin/index.js +4 -4
- package/libs/AreaMakerPlugin/utils/Item.js +4 -4
- package/libs/CSS3DRenderPlugin/Controller.js +4 -4
- package/libs/CSS3DRenderPlugin/index.js +5 -5
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +4 -4
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +4 -4
- package/libs/CruisePlugin/BaseController.js +4 -4
- package/libs/CruisePlugin/index.js +4 -4
- package/libs/CurrentPanoImagePlugin/index.js +4 -4
- package/libs/GuideLinePlugin/GuideLineItem.js +4 -4
- package/libs/GuideLinePlugin/GuideLineModeItem.js +5 -5
- package/libs/GuideLinePlugin/index.js +4 -4
- package/libs/ModelMakerPlugin/index.js +4 -4
- package/libs/ModelMakerPlugin/item/baseItem.js +10 -6
- package/libs/ModelMakerPlugin/item/boxItem.js +6 -2
- package/libs/ModelMakerPlugin/item/polygonItem.js +6 -2
- package/libs/ModelMakerPlugin/item/prismItem.js +13 -9
- package/libs/ModelTVVideoPlugin/Plugin.js +4 -4
- package/libs/ModelTVVideoPlugin/index.js +4 -4
- package/libs/Object3DHelperPlugin/Controller.js +4 -4
- package/libs/Object3DHelperPlugin/index.js +4 -4
- package/libs/PanoCompassPlugin/Controller.js +4 -4
- package/libs/PanoCompassPlugin/index.js +4 -4
- package/libs/PanoDoorLabelPlugin/BaseController.js +4 -4
- package/libs/PanoDoorLabelPlugin/Controller.js +4 -4
- package/libs/PanoDoorLabelPlugin/index.js +4 -4
- package/libs/PanoMeasurePlugin/Components/Controller0.js +5 -5
- package/libs/PanoMeasurePlugin/Components/Controller1.js +5 -5
- package/libs/PanoMeasurePlugin/Controller/EditController.js +5 -5
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +5 -5
- package/libs/PanoMeasurePlugin/Controller/index.js +4 -4
- package/libs/PanoMeasurePlugin/Model/area.js +5 -5
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +4 -4
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +5 -5
- package/libs/PanoMeasurePlugin/index.js +5 -5
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +5 -5
- package/libs/PanoSpatialTagPlugin/Plugin.js +4 -4
- package/libs/PanoSpatialTagPlugin/index.js +4 -4
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +5 -5
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +5 -5
- package/libs/PanoTagPlugin/Components/Tag/index.js +5 -5
- package/libs/PanoTagPlugin/Components/TagContainer.js +5 -5
- package/libs/PanoTagPlugin/Components/TagItem.js +5 -5
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +3 -3
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +4 -4
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +4 -4
- package/libs/PanoTagPlugin/controller/Tag/PointTag.d.ts +0 -1
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +4 -7
- package/libs/PanoTagPlugin/controller/TagRender.js +59 -59
- package/libs/PanoTagPlugin/controller/TagUtil.js +4 -4
- package/libs/PanoTagPlugin/controller/index.js +5 -5
- package/libs/PanoTagPlugin/index.js +5 -5
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +5 -5
- package/libs/PanoVideoPlugin/Controller.js +5 -5
- package/libs/PanoVideoPlugin/VideoMeshController.js +5 -5
- package/libs/PanoVideoPlugin/index.js +5 -5
- package/libs/PipelinePlugin/Controller.js +4 -4
- package/libs/PipelinePlugin/index.js +4 -4
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +5 -5
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +5 -5
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +5 -5
- package/libs/base/BasePlugin.js +1 -1
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +4 -4
- package/libs/floorplan/ModelFloorplanPlugin/index.js +4 -4
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +4 -4
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +4 -4
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +4 -4
- package/libs/index.js +5 -5
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.d.ts +1 -0
- package/libs/shared-utils/tag.js +31 -28
- package/package.json +1 -1
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
var x = Object.defineProperty;
|
|
2
2
|
var v = Object.getOwnPropertySymbols;
|
|
3
3
|
var O = Object.prototype.hasOwnProperty, A = Object.prototype.propertyIsEnumerable;
|
|
4
|
-
var T = (
|
|
4
|
+
var T = (a, e, t) => e in a ? x(a, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : a[e] = t, j = (a, e) => {
|
|
5
5
|
for (var t in e || (e = {}))
|
|
6
|
-
O.call(e, t) && T(
|
|
6
|
+
O.call(e, t) && T(a, t, e[t]);
|
|
7
7
|
if (v)
|
|
8
8
|
for (var t of v(e))
|
|
9
|
-
A.call(e, t) && T(
|
|
10
|
-
return
|
|
9
|
+
A.call(e, t) && T(a, t, e[t]);
|
|
10
|
+
return a;
|
|
11
11
|
};
|
|
12
|
-
var
|
|
13
|
-
var
|
|
14
|
-
var r = (
|
|
12
|
+
var d = (a, e, t) => (T(a, typeof e != "symbol" ? e + "" : e, t), t);
|
|
13
|
+
var w = (a, e, t) => new Promise((i, o) => {
|
|
14
|
+
var r = (p) => {
|
|
15
15
|
try {
|
|
16
|
-
|
|
16
|
+
l(t.next(p));
|
|
17
17
|
} catch (h) {
|
|
18
18
|
o(h);
|
|
19
19
|
}
|
|
20
|
-
},
|
|
20
|
+
}, m = (p) => {
|
|
21
21
|
try {
|
|
22
|
-
|
|
22
|
+
l(t.throw(p));
|
|
23
23
|
} catch (h) {
|
|
24
24
|
o(h);
|
|
25
25
|
}
|
|
26
|
-
},
|
|
27
|
-
|
|
26
|
+
}, l = (p) => p.done ? i(p.value) : Promise.resolve(p.value).then(r, m);
|
|
27
|
+
l((t = t.apply(a, e)).next());
|
|
28
28
|
});
|
|
29
29
|
import { Group as y, Quaternion as G, Vector3 as C, Matrix4 as M } from "three";
|
|
30
30
|
import E from "../Components/Tag/index.js";
|
|
@@ -103,15 +103,15 @@ import "../../shared-utils/tag.js";
|
|
|
103
103
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
104
104
|
import "../../shared-utils/five/getFiveModel.js";
|
|
105
105
|
import "../../shared-utils/three/raycaster.js";
|
|
106
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
107
|
-
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
108
|
-
import "../../Object3DHelperPlugin/Controller.js";
|
|
109
|
-
import "../../base/BasePlugin.js";
|
|
110
|
-
import "../../shared-utils/Subscribe.js";
|
|
111
106
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
112
107
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
108
|
+
import "../../shared-utils/Subscribe.js";
|
|
113
109
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
114
110
|
import "../../shared-utils/five/transformPosition.js";
|
|
111
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
112
|
+
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
113
|
+
import "../../Object3DHelperPlugin/Controller.js";
|
|
114
|
+
import "../../base/BasePlugin.js";
|
|
115
115
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
116
116
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
117
117
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -230,17 +230,17 @@ import "../../CSS3DRenderPlugin/Controller.js";
|
|
|
230
230
|
class vr extends U {
|
|
231
231
|
constructor(t) {
|
|
232
232
|
super(t);
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
233
|
+
d(this, "rendererMap", /* @__PURE__ */ new Map());
|
|
234
|
+
d(this, "contentTypeMap", /* @__PURE__ */ new Map());
|
|
235
|
+
d(this, "group", new y());
|
|
236
|
+
d(this, "imagePlaneGroup", new y());
|
|
237
|
+
d(this, "gltfObjectGroup", new y());
|
|
238
238
|
/** 维护一个可用模型表,用于快速删除不应该在场景中的模型 */
|
|
239
|
-
|
|
239
|
+
d(this, "enabledModelTagSet", /* @__PURE__ */ new Set());
|
|
240
240
|
/** 临时状态 */
|
|
241
|
-
|
|
241
|
+
d(this, "temporaryState", { visible: !0 });
|
|
242
242
|
/** 点标签 */
|
|
243
|
-
|
|
243
|
+
d(this, "TagContainerSvelte");
|
|
244
244
|
this.group.name = "PanoTagPluginModelGroup", this.gltfObjectGroup.name = "PanoTagPluginGLTFObjectGroup", this.imagePlaneGroup.name = "ImagePlaneGroup", this.group.add(this.gltfObjectGroup), this.group.add(this.imagePlaneGroup);
|
|
245
245
|
}
|
|
246
246
|
/**
|
|
@@ -261,8 +261,8 @@ class vr extends U {
|
|
|
261
261
|
clearTags() {
|
|
262
262
|
var t;
|
|
263
263
|
this.tags.length && (this.tags.forEach((i) => {
|
|
264
|
-
var o, r;
|
|
265
|
-
(r = (o = i.mediaPlane) == null ? void 0 : o.parent) == null || r.remove(i.mediaPlane);
|
|
264
|
+
var o, r, m, l, p;
|
|
265
|
+
(r = (o = i.mediaPlane) == null ? void 0 : o.parent) == null || r.remove(i.mediaPlane), (p = (l = (m = i.model) == null ? void 0 : m.object) == null ? void 0 : l.parent) == null || p.remove(i.model.object);
|
|
266
266
|
}), this.tags = [], this.tagsLengthWillUpdate = !0, this.hooks.emit("tagsLengthChange"), (t = this.TagContainerSvelte) == null || t.$destroy(), this.TagContainerSvelte = void 0, this.disposeAllCSS3DContainer()), this.enabledModelTagSet.clear(), this.cache.clear();
|
|
267
267
|
}
|
|
268
268
|
/**
|
|
@@ -270,47 +270,47 @@ class vr extends U {
|
|
|
270
270
|
*/
|
|
271
271
|
updateRender3DDomTag(t) {
|
|
272
272
|
(t ? N(t) : this.filterCSS3DTag).forEach((o) => {
|
|
273
|
-
var r,
|
|
273
|
+
var r, m, l, p, h, b;
|
|
274
274
|
if (o.tag3DContentSvelte) {
|
|
275
|
-
const { svelteApp: f, css3DInstance:
|
|
276
|
-
if ((
|
|
277
|
-
const
|
|
278
|
-
|
|
275
|
+
const { svelteApp: f, css3DInstance: c, initialNormal: u, currentNormal: s } = o.tag3DContentSvelte;
|
|
276
|
+
if ((m = c == null ? void 0 : c.css3DObject) == null || m.setVisible((this.state.visible && ((r = o.state) == null ? void 0 : r.visible)) !== !1), f.$set({ tag: o, hooks: this.hooks, state: this.state, temporaryState: this.temporaryState }), !u.equals(s)) {
|
|
277
|
+
const n = new G().setFromUnitVectors(u, s);
|
|
278
|
+
c.css3DObject.setRotationFromQuaternion(n);
|
|
279
279
|
}
|
|
280
280
|
return;
|
|
281
281
|
} else {
|
|
282
|
-
if (P(o) && !((
|
|
282
|
+
if (P(o) && !((l = o.model) != null && l.object) || ((p = o.state) == null ? void 0 : p.visible) === !1 || !this.state.visible || !this.state.enabled || !this.css3DRenderPlugin)
|
|
283
283
|
return;
|
|
284
284
|
if (o.stickType === "3DPoint" && !o.normal)
|
|
285
285
|
return console.error("updateRenderPlaneTag: 三维点标签缺少法向量!");
|
|
286
286
|
const f = this.getPositions(o);
|
|
287
287
|
if (!f)
|
|
288
288
|
return;
|
|
289
|
-
const
|
|
290
|
-
if (!
|
|
289
|
+
const c = o.computeNormal();
|
|
290
|
+
if (!c)
|
|
291
291
|
return;
|
|
292
|
-
const u = o.getConfig(),
|
|
292
|
+
const u = o.getConfig(), s = j({
|
|
293
293
|
wrapperStyle: { zIndex: `${Math.round((1e4 - ((h = o.getDistance()) != null ? h : 0)) * 100)}` }
|
|
294
294
|
}, u.tag3DConfig);
|
|
295
|
-
if (o.computeRenderType() === "BehindDom" ||
|
|
296
|
-
|
|
295
|
+
if (o.computeRenderType() === "BehindDom" || s.mode === "behind") {
|
|
296
|
+
s.mode = "behind", s.container = document.createElement("div");
|
|
297
297
|
const D = "black";
|
|
298
|
-
|
|
298
|
+
s.container.style.backgroundColor = D, s.container.style.border = `3px solid ${D}`, this.css3DRenderPlugin.hooks.on("render", () => {
|
|
299
299
|
var S;
|
|
300
|
-
if (
|
|
301
|
-
const
|
|
300
|
+
if (n.css3DObject.opacityMesh && u.clickable !== !1) {
|
|
301
|
+
const R = this.addObjectClickHandler(o, n.css3DObject.opacityMesh, (k) => {
|
|
302
302
|
this.hooks.emit("click", { event: k, target: "TagContent", tag: o });
|
|
303
303
|
});
|
|
304
|
-
(S = this.store.css3DRenderDisposer.get(o.id)) == null || S.push(
|
|
304
|
+
(S = this.store.css3DRenderDisposer.get(o.id)) == null || S.push(R);
|
|
305
305
|
}
|
|
306
306
|
});
|
|
307
307
|
}
|
|
308
|
-
const
|
|
309
|
-
if (!
|
|
308
|
+
const n = this.css3DRenderPlugin.create3DDomContainer(f, s);
|
|
309
|
+
if (!n)
|
|
310
310
|
return;
|
|
311
|
-
this.store.css3DRenderDisposer.set(o.id, [
|
|
311
|
+
this.store.css3DRenderDisposer.set(o.id, [n.dispose]);
|
|
312
312
|
const g = new E({
|
|
313
|
-
target:
|
|
313
|
+
target: n.container,
|
|
314
314
|
props: {
|
|
315
315
|
tag: o,
|
|
316
316
|
hooks: this.hooks,
|
|
@@ -322,12 +322,12 @@ class vr extends U {
|
|
|
322
322
|
});
|
|
323
323
|
o.tag3DContentSvelte = {
|
|
324
324
|
svelteApp: g,
|
|
325
|
-
domContainer:
|
|
326
|
-
css3DInstance:
|
|
327
|
-
initialNormal:
|
|
328
|
-
currentNormal:
|
|
325
|
+
domContainer: n,
|
|
326
|
+
css3DInstance: n,
|
|
327
|
+
initialNormal: c,
|
|
328
|
+
currentNormal: c,
|
|
329
329
|
dispose: () => {
|
|
330
|
-
g.$destroy(),
|
|
330
|
+
g.$destroy(), n.dispose();
|
|
331
331
|
}
|
|
332
332
|
}, P(o) && ((b = o.model) != null && b.object) && this.updateTagCss3DObjectMatrix(o, o.model.object);
|
|
333
333
|
}
|
|
@@ -338,22 +338,22 @@ class vr extends U {
|
|
|
338
338
|
* @param model 模型
|
|
339
339
|
*/
|
|
340
340
|
updateTagCss3DObjectMatrix(t, i) {
|
|
341
|
-
var
|
|
342
|
-
const o = (g = (
|
|
341
|
+
var n, g, D;
|
|
342
|
+
const o = (g = (n = t.getConfig().tag3DConfig) == null ? void 0 : n.ratio) != null ? g : 216e-5, r = (D = t.tag3DContentSvelte) == null ? void 0 : D.css3DInstance.css3DObject;
|
|
343
343
|
if (!r)
|
|
344
344
|
return;
|
|
345
|
-
const
|
|
346
|
-
if (!
|
|
345
|
+
const m = P(t) ? t.data.mediaPosition : t.position;
|
|
346
|
+
if (!m || m.length !== 4 || !Array.isArray(m[0]) || !Array.isArray(m[2]))
|
|
347
347
|
return;
|
|
348
348
|
i.updateWorldMatrix(!1, !1);
|
|
349
|
-
const
|
|
349
|
+
const l = i.matrixWorld, p = new C().fromArray(m[0]), h = new C().fromArray(m[2]), b = I(p, h).add(new C(0, 0, 5e-4)), f = new M().setPosition(b), c = new M().makeScale(o, o, o), u = new M().multiply(l).multiply(f).multiply(c);
|
|
350
350
|
u.decompose(r.position, r.quaternion, r.scale);
|
|
351
|
-
const
|
|
352
|
-
|
|
351
|
+
const s = r.opacityMesh;
|
|
352
|
+
s && u.decompose(s.position, s.quaternion, s.scale);
|
|
353
353
|
}
|
|
354
354
|
/** 添加模型标签 */
|
|
355
355
|
addMediaModelTag(t) {
|
|
356
|
-
return
|
|
356
|
+
return w(this, null, function* () {
|
|
357
357
|
const i = t.filter((o) => o.stickType === "Model").map((o) => o.loadModel());
|
|
358
358
|
yield Promise.all(i), t.forEach((o) => o.updateVisible());
|
|
359
359
|
});
|
|
@@ -40,6 +40,10 @@ import "../../shared-utils/tag.js";
|
|
|
40
40
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
41
41
|
import "../../shared-utils/five/getFiveModel.js";
|
|
42
42
|
import "../../shared-utils/three/raycaster.js";
|
|
43
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
44
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
45
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
46
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
43
47
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
44
48
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
45
49
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
@@ -91,10 +95,6 @@ import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
|
91
95
|
import "../../shared-utils/isTouchDevice.js";
|
|
92
96
|
import "../../shared-utils/five/getPosition.js";
|
|
93
97
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
94
|
-
import "../../shared-utils/Utils/FiveUtil.js";
|
|
95
|
-
import "../../shared-utils/Utils/BaseUtil.js";
|
|
96
|
-
import "../../shared-utils/Utils/WorkUtil.js";
|
|
97
|
-
import "../../shared-utils/five/transformPosition.js";
|
|
98
98
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
99
99
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
100
100
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -119,15 +119,15 @@ import "../../shared-utils/tag.js";
|
|
|
119
119
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
120
120
|
import "../../shared-utils/five/getFiveModel.js";
|
|
121
121
|
import "../../shared-utils/three/raycaster.js";
|
|
122
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
123
|
-
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
124
|
-
import "../../Object3DHelperPlugin/Controller.js";
|
|
125
|
-
import "../../base/BasePlugin.js";
|
|
126
|
-
import "../../shared-utils/Subscribe.js";
|
|
127
122
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
128
123
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
124
|
+
import "../../shared-utils/Subscribe.js";
|
|
129
125
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
130
126
|
import "../../shared-utils/five/transformPosition.js";
|
|
127
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
128
|
+
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
129
|
+
import "../../Object3DHelperPlugin/Controller.js";
|
|
130
|
+
import "../../base/BasePlugin.js";
|
|
131
131
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
132
132
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
133
133
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -84,15 +84,15 @@ import "../shared-utils/tag.js";
|
|
|
84
84
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
85
85
|
import "../shared-utils/five/getFiveModel.js";
|
|
86
86
|
import "../shared-utils/three/raycaster.js";
|
|
87
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
88
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
89
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
90
|
-
import "../base/BasePlugin.js";
|
|
91
|
-
import "../shared-utils/Subscribe.js";
|
|
92
87
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
93
88
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
89
|
+
import "../shared-utils/Subscribe.js";
|
|
94
90
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
95
91
|
import "../shared-utils/five/transformPosition.js";
|
|
92
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
93
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
94
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
95
|
+
import "../base/BasePlugin.js";
|
|
96
96
|
import "../shared-utils/url/absoluteUrl.js";
|
|
97
97
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
98
98
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -34,15 +34,15 @@ import "../../../shared-utils/tag.js";
|
|
|
34
34
|
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
35
35
|
import "../../../shared-utils/five/getFiveModel.js";
|
|
36
36
|
import "../../../shared-utils/three/raycaster.js";
|
|
37
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
38
|
-
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
39
|
-
import "../../../Object3DHelperPlugin/Controller.js";
|
|
40
|
-
import "../../../base/BasePlugin.js";
|
|
41
|
-
import "../../../shared-utils/Subscribe.js";
|
|
42
37
|
import "../../../shared-utils/Utils/FiveUtil.js";
|
|
43
38
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
39
|
+
import "../../../shared-utils/Subscribe.js";
|
|
44
40
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
45
41
|
import "../../../shared-utils/five/transformPosition.js";
|
|
42
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
43
|
+
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
44
|
+
import "../../../Object3DHelperPlugin/Controller.js";
|
|
45
|
+
import "../../../base/BasePlugin.js";
|
|
46
46
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
47
47
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
48
48
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -32,6 +32,11 @@ import "../shared-utils/tag.js";
|
|
|
32
32
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
33
33
|
import "../shared-utils/five/getFiveModel.js";
|
|
34
34
|
import "../shared-utils/three/raycaster.js";
|
|
35
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
36
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
37
|
+
import "../shared-utils/Subscribe.js";
|
|
38
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
39
|
+
import "../shared-utils/five/transformPosition.js";
|
|
35
40
|
import "../Sculpt/utils/Modules/Global.js";
|
|
36
41
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
37
42
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -48,14 +53,9 @@ import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
|
48
53
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
49
54
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
50
55
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
51
|
-
import "../shared-utils/Subscribe.js";
|
|
52
56
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
53
57
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
54
58
|
import "../shared-utils/three/getObjectVisible.js";
|
|
55
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
56
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
57
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
58
|
-
import "../shared-utils/five/transformPosition.js";
|
|
59
59
|
import "../shared-utils/url/absoluteUrl.js";
|
|
60
60
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
61
61
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -22,15 +22,15 @@ import "../shared-utils/tag.js";
|
|
|
22
22
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
23
23
|
import "../shared-utils/five/getFiveModel.js";
|
|
24
24
|
import "../shared-utils/three/raycaster.js";
|
|
25
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
26
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
27
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
28
|
-
import "../base/BasePlugin.js";
|
|
29
|
-
import "../shared-utils/Subscribe.js";
|
|
30
25
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
31
26
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
27
|
+
import "../shared-utils/Subscribe.js";
|
|
32
28
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
33
29
|
import "../shared-utils/five/transformPosition.js";
|
|
30
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
31
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
32
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
33
|
+
import "../base/BasePlugin.js";
|
|
34
34
|
import "../shared-utils/url/absoluteUrl.js";
|
|
35
35
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
36
36
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -20,15 +20,15 @@ import "../shared-utils/tag.js";
|
|
|
20
20
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
21
21
|
import "../shared-utils/five/getFiveModel.js";
|
|
22
22
|
import "../shared-utils/three/raycaster.js";
|
|
23
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
24
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
25
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
26
|
-
import "../base/BasePlugin.js";
|
|
27
|
-
import "../shared-utils/Subscribe.js";
|
|
28
23
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
29
24
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
25
|
+
import "../shared-utils/Subscribe.js";
|
|
30
26
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
31
27
|
import "../shared-utils/five/transformPosition.js";
|
|
28
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
29
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
30
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
31
|
+
import "../base/BasePlugin.js";
|
|
32
32
|
import "../shared-utils/url/absoluteUrl.js";
|
|
33
33
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
34
34
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -51,6 +51,10 @@ import "../shared-utils/tag.js";
|
|
|
51
51
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
52
52
|
import "../shared-utils/five/getFiveModel.js";
|
|
53
53
|
import "../shared-utils/three/raycaster.js";
|
|
54
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
55
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
56
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
57
|
+
import "../shared-utils/five/transformPosition.js";
|
|
54
58
|
import "../Sculpt/utils/Modules/Global.js";
|
|
55
59
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
56
60
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -70,10 +74,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
70
74
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
71
75
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
72
76
|
import "../shared-utils/three/getObjectVisible.js";
|
|
73
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
74
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
75
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
76
|
-
import "../shared-utils/five/transformPosition.js";
|
|
77
77
|
import "../shared-utils/url/absoluteUrl.js";
|
|
78
78
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
79
79
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -20,6 +20,10 @@ import "../shared-utils/tag.js";
|
|
|
20
20
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
21
21
|
import "../shared-utils/five/getFiveModel.js";
|
|
22
22
|
import "../shared-utils/three/raycaster.js";
|
|
23
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
24
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
25
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
26
|
+
import "../shared-utils/five/transformPosition.js";
|
|
23
27
|
import "../Sculpt/utils/Modules/Global.js";
|
|
24
28
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
25
29
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -39,10 +43,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
39
43
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
40
44
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
41
45
|
import "../shared-utils/three/getObjectVisible.js";
|
|
42
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
43
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
44
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
45
|
-
import "../shared-utils/five/transformPosition.js";
|
|
46
46
|
import "../shared-utils/url/absoluteUrl.js";
|
|
47
47
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
48
48
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -21,15 +21,15 @@ import "../../../shared-utils/tag.js";
|
|
|
21
21
|
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
22
22
|
import "../../../shared-utils/five/getFiveModel.js";
|
|
23
23
|
import "../../../shared-utils/three/raycaster.js";
|
|
24
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
25
|
-
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
26
|
-
import "../../../Object3DHelperPlugin/Controller.js";
|
|
27
|
-
import "../../../base/BasePlugin.js";
|
|
28
|
-
import "../../../shared-utils/Subscribe.js";
|
|
29
24
|
import "../../../shared-utils/Utils/FiveUtil.js";
|
|
30
25
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
26
|
+
import "../../../shared-utils/Subscribe.js";
|
|
31
27
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
32
28
|
import "../../../shared-utils/five/transformPosition.js";
|
|
29
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
30
|
+
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
31
|
+
import "../../../Object3DHelperPlugin/Controller.js";
|
|
32
|
+
import "../../../base/BasePlugin.js";
|
|
33
33
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
34
34
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
35
35
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -21,15 +21,15 @@ import "../../../shared-utils/tag.js";
|
|
|
21
21
|
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
22
22
|
import "../../../shared-utils/five/getFiveModel.js";
|
|
23
23
|
import "../../../shared-utils/three/raycaster.js";
|
|
24
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
25
|
-
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
26
|
-
import "../../../Object3DHelperPlugin/Controller.js";
|
|
27
|
-
import "../../../base/BasePlugin.js";
|
|
28
|
-
import "../../../shared-utils/Subscribe.js";
|
|
29
24
|
import "../../../shared-utils/Utils/FiveUtil.js";
|
|
30
25
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
26
|
+
import "../../../shared-utils/Subscribe.js";
|
|
31
27
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
32
28
|
import "../../../shared-utils/five/transformPosition.js";
|
|
29
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
30
|
+
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
31
|
+
import "../../../Object3DHelperPlugin/Controller.js";
|
|
32
|
+
import "../../../base/BasePlugin.js";
|
|
33
33
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
34
34
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
35
35
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -46,15 +46,15 @@ import "../../../shared-utils/tag.js";
|
|
|
46
46
|
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
47
47
|
import "../../../shared-utils/five/getFiveModel.js";
|
|
48
48
|
import "../../../shared-utils/three/raycaster.js";
|
|
49
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
50
|
-
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
51
|
-
import "../../../Object3DHelperPlugin/Controller.js";
|
|
52
|
-
import "../../../base/BasePlugin.js";
|
|
53
|
-
import "../../../shared-utils/Subscribe.js";
|
|
54
49
|
import "../../../shared-utils/Utils/FiveUtil.js";
|
|
55
50
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
51
|
+
import "../../../shared-utils/Subscribe.js";
|
|
56
52
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
57
53
|
import "../../../shared-utils/five/transformPosition.js";
|
|
54
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
55
|
+
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
56
|
+
import "../../../Object3DHelperPlugin/Controller.js";
|
|
57
|
+
import "../../../base/BasePlugin.js";
|
|
58
58
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
59
59
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
60
60
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
package/libs/base/BasePlugin.js
CHANGED
|
@@ -56,6 +56,10 @@ import "../../shared-utils/tag.js";
|
|
|
56
56
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
57
57
|
import "../../shared-utils/five/getFiveModel.js";
|
|
58
58
|
import "../../shared-utils/three/raycaster.js";
|
|
59
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
60
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
61
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
62
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
59
63
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
60
64
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
61
65
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
@@ -75,10 +79,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
75
79
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
76
80
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
77
81
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
78
|
-
import "../../shared-utils/Utils/FiveUtil.js";
|
|
79
|
-
import "../../shared-utils/Utils/BaseUtil.js";
|
|
80
|
-
import "../../shared-utils/Utils/WorkUtil.js";
|
|
81
|
-
import "../../shared-utils/five/transformPosition.js";
|
|
82
82
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
83
83
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
84
84
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -57,6 +57,10 @@ import "../../shared-utils/tag.js";
|
|
|
57
57
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
58
58
|
import "../../shared-utils/five/getFiveModel.js";
|
|
59
59
|
import "../../shared-utils/three/raycaster.js";
|
|
60
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
61
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
62
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
63
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
60
64
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
61
65
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
62
66
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
@@ -76,10 +80,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
76
80
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
77
81
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
78
82
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
79
|
-
import "../../shared-utils/Utils/FiveUtil.js";
|
|
80
|
-
import "../../shared-utils/Utils/BaseUtil.js";
|
|
81
|
-
import "../../shared-utils/Utils/WorkUtil.js";
|
|
82
|
-
import "../../shared-utils/five/transformPosition.js";
|
|
83
83
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
84
84
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
85
85
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -66,6 +66,10 @@ import "../../shared-utils/tag.js";
|
|
|
66
66
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
67
67
|
import "../../shared-utils/five/getFiveModel.js";
|
|
68
68
|
import "../../shared-utils/three/raycaster.js";
|
|
69
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
70
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
71
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
72
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
69
73
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
70
74
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
71
75
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
@@ -85,10 +89,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
85
89
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
86
90
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
87
91
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
88
|
-
import "../../shared-utils/Utils/FiveUtil.js";
|
|
89
|
-
import "../../shared-utils/Utils/BaseUtil.js";
|
|
90
|
-
import "../../shared-utils/Utils/WorkUtil.js";
|
|
91
|
-
import "../../shared-utils/five/transformPosition.js";
|
|
92
92
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
93
93
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
94
94
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -37,6 +37,10 @@ import "../../shared-utils/tag.js";
|
|
|
37
37
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
38
38
|
import "../../shared-utils/five/getFiveModel.js";
|
|
39
39
|
import "../../shared-utils/three/raycaster.js";
|
|
40
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
41
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
42
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
43
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
40
44
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
41
45
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
42
46
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
@@ -56,10 +60,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
56
60
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
57
61
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
58
62
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
59
|
-
import "../../shared-utils/Utils/FiveUtil.js";
|
|
60
|
-
import "../../shared-utils/Utils/BaseUtil.js";
|
|
61
|
-
import "../../shared-utils/Utils/WorkUtil.js";
|
|
62
|
-
import "../../shared-utils/five/transformPosition.js";
|
|
63
63
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
64
64
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
65
65
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -55,6 +55,10 @@ import "../../shared-utils/tag.js";
|
|
|
55
55
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
56
56
|
import "../../shared-utils/five/getFiveModel.js";
|
|
57
57
|
import "../../shared-utils/three/raycaster.js";
|
|
58
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
59
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
60
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
61
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
58
62
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
59
63
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
60
64
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
@@ -74,10 +78,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
74
78
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
75
79
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
76
80
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
77
|
-
import "../../shared-utils/Utils/FiveUtil.js";
|
|
78
|
-
import "../../shared-utils/Utils/BaseUtil.js";
|
|
79
|
-
import "../../shared-utils/Utils/WorkUtil.js";
|
|
80
|
-
import "../../shared-utils/five/transformPosition.js";
|
|
81
81
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
82
82
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
83
83
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|