@tomorrowevening/hermes 0.0.6 → 0.0.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/dist/hermes.js +786 -737
- package/dist/hermes.umd.cjs +13 -13
- package/package.json +1 -1
- package/src/editor/sceneHierarchy/ChildObject.tsx +1 -1
- package/src/editor/sceneHierarchy/inspector/Inspector.tsx +53 -38
- package/src/editor/sceneHierarchy/inspector/utils/InspectCamera.tsx +1 -1
- package/src/editor/sceneHierarchy/inspector/utils/InspectLight.tsx +3 -3
- package/src/editor/sceneHierarchy/inspector/utils/InspectMaterial.tsx +24 -8
- package/src/editor/sceneHierarchy/utils.ts +29 -23
- package/types/editor/sceneHierarchy/inspector/utils/InspectCamera.d.ts +1 -1
- package/types/editor/sceneHierarchy/inspector/utils/InspectLight.d.ts +1 -1
- package/types/editor/sceneHierarchy/inspector/utils/InspectMaterial.d.ts +1 -1
package/dist/hermes.js
CHANGED
@@ -1,43 +1,43 @@
|
|
1
|
-
var
|
2
|
-
var
|
3
|
-
var $ = (t, n, r) => (
|
4
|
-
import { EventDispatcher as
|
5
|
-
import { getProject as
|
6
|
-
import { Pane as
|
7
|
-
import * as
|
8
|
-
import
|
9
|
-
import { Reorder as
|
1
|
+
var on = Object.defineProperty;
|
2
|
+
var sn = (t, n, r) => n in t ? on(t, n, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[n] = r;
|
3
|
+
var $ = (t, n, r) => (sn(t, typeof n != "symbol" ? n + "" : n, r), r);
|
4
|
+
import { EventDispatcher as Gt, Texture as Yt, CubeTexture as cn, RepeatWrapping as Pt, Color as Ct, Matrix4 as ln, Vector3 as G, Euler as un, Ray as dn, Plane as fn, MathUtils as hn, MOUSE as De, TOUCH as _e, Quaternion as Rt, Spherical as jt, Vector2 as ae, ShaderMaterial as pn, GLSL3 as mn, DoubleSide as gn, Mesh as vn, PlaneGeometry as bn, PerspectiveCamera as bt, MeshNormalMaterial as yn, MeshBasicMaterial as En, Scene as wn, AxesHelper as xn, OrthographicCamera as Vt, CameraHelper as Cn } from "three";
|
5
|
+
import { getProject as Sn } from "@theatre/core";
|
6
|
+
import { Pane as On } from "tweakpane";
|
7
|
+
import * as Tn from "@tweakpane/plugin-essentials";
|
8
|
+
import zt, { useState as re, useRef as Se, useEffect as qe, Component as Mn, forwardRef as Pn } from "react";
|
9
|
+
import { Reorder as Wt } from "framer-motion";
|
10
10
|
import We from "@theatre/studio";
|
11
|
-
function
|
11
|
+
function va(t, n, r) {
|
12
12
|
return Math.min(n, Math.max(t, r));
|
13
13
|
}
|
14
|
-
function
|
14
|
+
function ba(t, n) {
|
15
15
|
const r = t - n;
|
16
16
|
return Math.sqrt(r * r);
|
17
17
|
}
|
18
|
-
function
|
18
|
+
function Rn() {
|
19
19
|
return Math.round(Math.random() * 1e6).toString();
|
20
20
|
}
|
21
|
-
function
|
21
|
+
function jn(t) {
|
22
22
|
return t.r !== void 0 && t.g !== void 0 && t.b !== void 0;
|
23
23
|
}
|
24
|
-
function
|
25
|
-
const n = Math.round(t.r * 255), r = Math.round(t.g * 255), e = Math.round(t.b * 255), i = (
|
26
|
-
const h =
|
24
|
+
function kn(t) {
|
25
|
+
const n = Math.round(t.r * 255), r = Math.round(t.g * 255), e = Math.round(t.b * 255), i = (l) => {
|
26
|
+
const h = l.toString(16);
|
27
27
|
return h.length === 1 ? "0" + h : h;
|
28
|
-
},
|
29
|
-
return "#" +
|
28
|
+
}, d = i(n), c = i(r), s = i(e);
|
29
|
+
return "#" + d + c + s;
|
30
30
|
}
|
31
|
-
let
|
32
|
-
const
|
31
|
+
let kt = 0;
|
32
|
+
const Ht = (t) => {
|
33
33
|
if (!t)
|
34
34
|
return;
|
35
35
|
let n = t.name.replace(" ", "");
|
36
|
-
n.length === 0 && (n = `obj_${
|
37
|
-
|
36
|
+
n.length === 0 && (n = `obj_${kt}`), t.parent !== null && (n = `${t.parent.uuid}.${n}`), t.uuid = n, kt++, t.children.forEach((r) => {
|
37
|
+
Ht(r);
|
38
38
|
});
|
39
39
|
};
|
40
|
-
class
|
40
|
+
class ya {
|
41
41
|
constructor(n, r, e) {
|
42
42
|
$(this, "channel");
|
43
43
|
$(this, "components", /* @__PURE__ */ new Map());
|
@@ -73,7 +73,7 @@ class wa {
|
|
73
73
|
n && (this._mode = "editor", document.title += " - Editor");
|
74
74
|
}
|
75
75
|
}
|
76
|
-
const
|
76
|
+
const A = new Gt(), N = {
|
77
77
|
CUSTOM: "ToolEvents::custom",
|
78
78
|
// Components
|
79
79
|
SELECT_DROPDOWN: "ToolEvents::selectDropdown",
|
@@ -87,7 +87,7 @@ const I = new Yt(), N = {
|
|
87
87
|
CREATE_TEXTURE: "ToolEvents::createTexture",
|
88
88
|
REQUEST_METHOD: "ToolEvents::requestMethod"
|
89
89
|
};
|
90
|
-
class
|
90
|
+
class lt {
|
91
91
|
constructor(n) {
|
92
92
|
$(this, "app");
|
93
93
|
this.app = n;
|
@@ -95,7 +95,7 @@ class ut {
|
|
95
95
|
dispose() {
|
96
96
|
}
|
97
97
|
}
|
98
|
-
class
|
98
|
+
class Ea extends lt {
|
99
99
|
selectDropdown(n, r) {
|
100
100
|
this.app.send({
|
101
101
|
event: "selectComponent",
|
@@ -117,9 +117,9 @@ class xa extends ut {
|
|
117
117
|
});
|
118
118
|
}
|
119
119
|
}
|
120
|
-
const
|
120
|
+
const Kt = () => {
|
121
121
|
};
|
122
|
-
class
|
122
|
+
class wa extends lt {
|
123
123
|
constructor(r, e, i) {
|
124
124
|
super(r);
|
125
125
|
$(this, "project");
|
@@ -127,7 +127,7 @@ class Ca extends ut {
|
|
127
127
|
$(this, "sheetObjects");
|
128
128
|
$(this, "sheetObjectCBs");
|
129
129
|
$(this, "sheetObjectUnsubscribe");
|
130
|
-
this.project =
|
130
|
+
this.project = Sn(e, i), this.sheets = /* @__PURE__ */ new Map(), this.sheetObjects = /* @__PURE__ */ new Map(), this.sheetObjectCBs = /* @__PURE__ */ new Map(), this.sheetObjectUnsubscribe = /* @__PURE__ */ new Map();
|
131
131
|
}
|
132
132
|
dispose() {
|
133
133
|
this.project = void 0, this.sheets = /* @__PURE__ */ new Map(), this.sheetObjects = /* @__PURE__ */ new Map(), this.sheetObjectCBs = /* @__PURE__ */ new Map(), this.sheetObjectUnsubscribe = /* @__PURE__ */ new Map();
|
@@ -141,7 +141,7 @@ class Ca extends ut {
|
|
141
141
|
let e = this.sheets.get(r);
|
142
142
|
return e !== void 0 || (e = (i = this.project) == null ? void 0 : i.sheet(r), this.sheets.set(r, e)), e;
|
143
143
|
}
|
144
|
-
sheetObject(r, e, i,
|
144
|
+
sheetObject(r, e, i, d) {
|
145
145
|
if (this.project === void 0) {
|
146
146
|
console.error("Theatre Project hasn't been created yet.");
|
147
147
|
return;
|
@@ -150,15 +150,15 @@ class Ca extends ut {
|
|
150
150
|
if (c === void 0)
|
151
151
|
return;
|
152
152
|
const s = `${r}_${e}`;
|
153
|
-
let
|
154
|
-
if (
|
155
|
-
return
|
156
|
-
|
157
|
-
const h =
|
153
|
+
let l = this.sheetObjects.get(s);
|
154
|
+
if (l !== void 0)
|
155
|
+
return l = c.object(e, { ...i, ...l.value }, { reconfigure: !0 }), l;
|
156
|
+
l = c.object(e, i), this.sheetObjects.set(s, l), this.sheetObjectCBs.set(s, d !== void 0 ? d : Kt);
|
157
|
+
const h = l.onValuesChange((p) => {
|
158
158
|
if (this.app.editor) {
|
159
|
-
for (const g in
|
160
|
-
const E =
|
161
|
-
typeof E == "object" &&
|
159
|
+
for (const g in p) {
|
160
|
+
const E = p[g];
|
161
|
+
typeof E == "object" && jn(E) && (p[g] = {
|
162
162
|
r: E.r,
|
163
163
|
g: E.g,
|
164
164
|
b: E.b,
|
@@ -170,15 +170,15 @@ class Ca extends ut {
|
|
170
170
|
target: "app",
|
171
171
|
data: {
|
172
172
|
sheetObject: s,
|
173
|
-
values:
|
173
|
+
values: p
|
174
174
|
}
|
175
175
|
});
|
176
176
|
} else {
|
177
177
|
const g = this.sheetObjectCBs.get(s);
|
178
|
-
g !== void 0 && g(
|
178
|
+
g !== void 0 && g(p);
|
179
179
|
}
|
180
180
|
});
|
181
|
-
return this.sheetObjectUnsubscribe.set(s, h),
|
181
|
+
return this.sheetObjectUnsubscribe.set(s, h), l;
|
182
182
|
}
|
183
183
|
unsubscribe(r) {
|
184
184
|
if (this.project === void 0) {
|
@@ -189,7 +189,7 @@ class Ca extends ut {
|
|
189
189
|
i !== void 0 && i();
|
190
190
|
}
|
191
191
|
}
|
192
|
-
function
|
192
|
+
function Dn(t) {
|
193
193
|
if (t.name === "cameras")
|
194
194
|
return "camera";
|
195
195
|
if (t.name === "interactive")
|
@@ -203,7 +203,7 @@ function An(t) {
|
|
203
203
|
const n = t.type;
|
204
204
|
return n.search("Helper") > -1 ? "icon_utils" : n.search("Camera") > -1 ? "camera" : n.search("Light") > -1 ? "light" : "obj3D";
|
205
205
|
}
|
206
|
-
function
|
206
|
+
function Xt(t) {
|
207
207
|
const n = {
|
208
208
|
name: t.name,
|
209
209
|
type: t.type,
|
@@ -211,10 +211,10 @@ function qt(t) {
|
|
211
211
|
children: []
|
212
212
|
};
|
213
213
|
return t.children.forEach((r) => {
|
214
|
-
n.children.push(
|
214
|
+
n.children.push(Xt(r));
|
215
215
|
}), n;
|
216
216
|
}
|
217
|
-
function
|
217
|
+
function _n(t) {
|
218
218
|
const n = {};
|
219
219
|
for (const r in t) {
|
220
220
|
const e = t[r].value;
|
@@ -222,7 +222,7 @@ function In(t) {
|
|
222
222
|
}
|
223
223
|
return n;
|
224
224
|
}
|
225
|
-
function
|
225
|
+
function In(t) {
|
226
226
|
switch (t) {
|
227
227
|
case "blendSrcAlpha":
|
228
228
|
case "blendDstAlpha":
|
@@ -234,10 +234,10 @@ function Nn(t) {
|
|
234
234
|
}
|
235
235
|
return !1;
|
236
236
|
}
|
237
|
-
function
|
237
|
+
function Dt(t) {
|
238
238
|
const n = {};
|
239
239
|
for (const r in t) {
|
240
|
-
if (r.substring(0, 1) === "_" || r.substring(0, 2) === "is" ||
|
240
|
+
if (r.substring(0, 1) === "_" || r.substring(0, 2) === "is" || In(r))
|
241
241
|
continue;
|
242
242
|
const e = typeof t[r], i = t[r];
|
243
243
|
switch (e) {
|
@@ -249,13 +249,13 @@ function _t(t) {
|
|
249
249
|
case "object":
|
250
250
|
if (i !== null)
|
251
251
|
if (n[r] = i, i.isTexture)
|
252
|
-
if (i instanceof
|
253
|
-
const
|
254
|
-
n[r] = { src:
|
252
|
+
if (i instanceof Yt) {
|
253
|
+
const d = i.source.toJSON();
|
254
|
+
n[r] = { src: d.url };
|
255
255
|
} else
|
256
|
-
i instanceof
|
256
|
+
i instanceof cn && (console.log("env map"), console.log(i.source.data), console.log(i.source.toJSON()), n[r] = { src: "" });
|
257
257
|
else
|
258
|
-
r === "uniforms" && (n[r] =
|
258
|
+
r === "uniforms" && (n[r] = _n(n[r]));
|
259
259
|
else
|
260
260
|
n[r] = { src: "" };
|
261
261
|
break;
|
@@ -263,26 +263,30 @@ function _t(t) {
|
|
263
263
|
}
|
264
264
|
return n;
|
265
265
|
}
|
266
|
-
function
|
266
|
+
function An(t) {
|
267
267
|
t.updateMatrix();
|
268
268
|
const n = {
|
269
269
|
name: t.name,
|
270
270
|
type: t.type,
|
271
271
|
uuid: t.uuid,
|
272
272
|
visible: t.visible,
|
273
|
-
matrix: t.matrix.elements
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
273
|
+
matrix: t.matrix.elements,
|
274
|
+
material: void 0,
|
275
|
+
perspectiveCameraInfo: void 0,
|
276
|
+
orthographicCameraInfo: void 0,
|
277
|
+
lightInfo: void 0
|
278
|
+
}, r = t.type.toLowerCase();
|
279
|
+
if (r.search("mesh") > -1) {
|
280
|
+
const e = t;
|
281
|
+
if (Array.isArray(e.material)) {
|
282
|
+
const i = [];
|
283
|
+
e.material.forEach((d) => {
|
284
|
+
i.push(Dt(d));
|
285
|
+
}), n.material = i;
|
282
286
|
} else
|
283
|
-
n.material =
|
287
|
+
n.material = Dt(e.material);
|
284
288
|
} else
|
285
|
-
|
289
|
+
r.search("camera") > -1 ? t.type === "PerspectiveCamera" ? n.perspectiveCameraInfo = {
|
286
290
|
fov: t.fov,
|
287
291
|
zoom: t.zoom,
|
288
292
|
near: t.near,
|
@@ -291,7 +295,7 @@ function Ln(t) {
|
|
291
295
|
aspect: t.aspect,
|
292
296
|
filmGauge: t.filmGauge,
|
293
297
|
filmOffset: t.filmOffset
|
294
|
-
} : t
|
298
|
+
} : t.type === "OrthographicCamera" && (n.orthographicCameraInfo = {
|
295
299
|
zoom: t.zoom,
|
296
300
|
near: t.near,
|
297
301
|
far: t.far,
|
@@ -299,7 +303,7 @@ function Ln(t) {
|
|
299
303
|
right: t.right,
|
300
304
|
top: t.top,
|
301
305
|
bottom: t.bottom
|
302
|
-
}) :
|
306
|
+
}) : r.search("light") > -1 && (n.lightInfo = {
|
303
307
|
color: t.color,
|
304
308
|
intensity: t.intensity,
|
305
309
|
decay: t.decay,
|
@@ -334,12 +338,12 @@ function yt(t) {
|
|
334
338
|
return new Promise((n, r) => {
|
335
339
|
const e = new Image();
|
336
340
|
e.onload = () => {
|
337
|
-
const i = new
|
338
|
-
i.wrapS =
|
341
|
+
const i = new Yt(e);
|
342
|
+
i.wrapS = Pt, i.wrapT = Pt, i.needsUpdate = !0, n(i);
|
339
343
|
}, e.onerror = r, e.src = t;
|
340
344
|
});
|
341
345
|
}
|
342
|
-
class
|
346
|
+
class xa extends lt {
|
343
347
|
constructor() {
|
344
348
|
super(...arguments);
|
345
349
|
$(this, "scene");
|
@@ -352,7 +356,7 @@ class Sa extends ut {
|
|
352
356
|
});
|
353
357
|
}
|
354
358
|
setObject(r) {
|
355
|
-
const e =
|
359
|
+
const e = An(r);
|
356
360
|
this.app.send({
|
357
361
|
event: "setObject",
|
358
362
|
target: "editor",
|
@@ -399,8 +403,8 @@ class Sa extends ut {
|
|
399
403
|
});
|
400
404
|
}
|
401
405
|
setScene(r) {
|
402
|
-
this.scene = r,
|
403
|
-
const e =
|
406
|
+
this.scene = r, Ht(r);
|
407
|
+
const e = Xt(r);
|
404
408
|
this.app.send({
|
405
409
|
event: "setScene",
|
406
410
|
target: "editor",
|
@@ -408,7 +412,7 @@ class Sa extends ut {
|
|
408
412
|
});
|
409
413
|
}
|
410
414
|
}
|
411
|
-
class
|
415
|
+
class Ca extends lt {
|
412
416
|
constructor(r) {
|
413
417
|
super(r);
|
414
418
|
$(this, "bindCBs");
|
@@ -420,7 +424,7 @@ class Oa extends ut {
|
|
420
424
|
this.bindCBs = /* @__PURE__ */ new Map(), this.buttonCBs = /* @__PURE__ */ new Map(), r.editor && this.createGUI();
|
421
425
|
}
|
422
426
|
createGUI() {
|
423
|
-
this.pane = new
|
427
|
+
this.pane = new On({ title: "GUI" }), this.pane.registerPlugin(Tn);
|
424
428
|
}
|
425
429
|
dispose() {
|
426
430
|
var r;
|
@@ -446,9 +450,9 @@ class Oa extends ut {
|
|
446
450
|
return `debug_${Math.max(this.appCallbacks, this.editorCallbacks)}`;
|
447
451
|
}
|
448
452
|
// Binding
|
449
|
-
bind(r, e, i,
|
450
|
-
const c = this.bindID, s = i.onChange !== void 0 ? i.onChange :
|
451
|
-
this.bindCBs.set(c, s), this.app.editor ? (this.pane === void 0 && this.createGUI(), (
|
453
|
+
bind(r, e, i, d = void 0) {
|
454
|
+
const c = this.bindID, s = i.onChange !== void 0 ? i.onChange : Kt;
|
455
|
+
this.bindCBs.set(c, s), this.app.editor ? (this.pane === void 0 && this.createGUI(), (d !== void 0 ? d : this.pane).addBinding(r, e, i).on("change", (h) => {
|
452
456
|
this.app.send({
|
453
457
|
event: "updateBind",
|
454
458
|
target: "app",
|
@@ -464,7 +468,7 @@ class Oa extends ut {
|
|
464
468
|
id: c,
|
465
469
|
name: e,
|
466
470
|
params: i,
|
467
|
-
parent:
|
471
|
+
parent: d
|
468
472
|
}
|
469
473
|
}), this.appCallbacks++);
|
470
474
|
}
|
@@ -474,20 +478,20 @@ class Oa extends ut {
|
|
474
478
|
}
|
475
479
|
// Buttons
|
476
480
|
button(r, e, i = void 0) {
|
477
|
-
const
|
478
|
-
this.buttonCBs.set(
|
481
|
+
const d = this.bindID;
|
482
|
+
this.buttonCBs.set(d, e), this.app.editor ? (this.pane === void 0 && this.createGUI(), (i !== void 0 ? i : this.pane).addButton({ title: r }).on("click", () => {
|
479
483
|
this.app.send({
|
480
484
|
event: "clickButton",
|
481
485
|
target: "app",
|
482
486
|
data: {
|
483
|
-
id:
|
487
|
+
id: d
|
484
488
|
}
|
485
489
|
});
|
486
490
|
}), this.editorCallbacks++) : (this.app.send({
|
487
491
|
event: "addButton",
|
488
492
|
target: "app",
|
489
493
|
data: {
|
490
|
-
id:
|
494
|
+
id: d,
|
491
495
|
name: r,
|
492
496
|
callback: e,
|
493
497
|
parent: i
|
@@ -518,20 +522,20 @@ var Et = { exports: {} }, He = {};
|
|
518
522
|
* This source code is licensed under the MIT license found in the
|
519
523
|
* LICENSE file in the root directory of this source tree.
|
520
524
|
*/
|
521
|
-
var
|
522
|
-
function
|
523
|
-
if (
|
525
|
+
var _t;
|
526
|
+
function Nn() {
|
527
|
+
if (_t)
|
524
528
|
return He;
|
525
|
-
|
526
|
-
var t =
|
527
|
-
function c(s,
|
528
|
-
var
|
529
|
-
h !== void 0 && (E = "" + h),
|
530
|
-
for (
|
531
|
-
e.call(
|
529
|
+
_t = 1;
|
530
|
+
var t = zt, n = Symbol.for("react.element"), r = Symbol.for("react.fragment"), e = Object.prototype.hasOwnProperty, i = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, d = { key: !0, ref: !0, __self: !0, __source: !0 };
|
531
|
+
function c(s, l, h) {
|
532
|
+
var p, g = {}, E = null, C = null;
|
533
|
+
h !== void 0 && (E = "" + h), l.key !== void 0 && (E = "" + l.key), l.ref !== void 0 && (C = l.ref);
|
534
|
+
for (p in l)
|
535
|
+
e.call(l, p) && !d.hasOwnProperty(p) && (g[p] = l[p]);
|
532
536
|
if (s && s.defaultProps)
|
533
|
-
for (
|
534
|
-
g[
|
537
|
+
for (p in l = s.defaultProps, l)
|
538
|
+
g[p] === void 0 && (g[p] = l[p]);
|
535
539
|
return { $$typeof: n, type: s, key: E, ref: C, props: g, _owner: i.current };
|
536
540
|
}
|
537
541
|
return He.Fragment = r, He.jsx = c, He.jsxs = c, He;
|
@@ -547,50 +551,50 @@ var Ke = {};
|
|
547
551
|
* LICENSE file in the root directory of this source tree.
|
548
552
|
*/
|
549
553
|
var It;
|
550
|
-
function
|
554
|
+
function Ln() {
|
551
555
|
return It || (It = 1, process.env.NODE_ENV !== "production" && function() {
|
552
|
-
var t =
|
556
|
+
var t = zt, n = Symbol.for("react.element"), r = Symbol.for("react.portal"), e = Symbol.for("react.fragment"), i = Symbol.for("react.strict_mode"), d = Symbol.for("react.profiler"), c = Symbol.for("react.provider"), s = Symbol.for("react.context"), l = Symbol.for("react.forward_ref"), h = Symbol.for("react.suspense"), p = Symbol.for("react.suspense_list"), g = Symbol.for("react.memo"), E = Symbol.for("react.lazy"), C = Symbol.for("react.offscreen"), P = Symbol.iterator, D = "@@iterator";
|
553
557
|
function y(a) {
|
554
558
|
if (a === null || typeof a != "object")
|
555
559
|
return null;
|
556
|
-
var f =
|
560
|
+
var f = P && a[P] || a[D];
|
557
561
|
return typeof f == "function" ? f : null;
|
558
562
|
}
|
559
563
|
var b = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
560
564
|
function v(a) {
|
561
565
|
{
|
562
|
-
for (var f = arguments.length,
|
563
|
-
|
564
|
-
O("error", a,
|
566
|
+
for (var f = arguments.length, m = new Array(f > 1 ? f - 1 : 0), x = 1; x < f; x++)
|
567
|
+
m[x - 1] = arguments[x];
|
568
|
+
O("error", a, m);
|
565
569
|
}
|
566
570
|
}
|
567
|
-
function O(a, f,
|
571
|
+
function O(a, f, m) {
|
568
572
|
{
|
569
573
|
var x = b.ReactDebugCurrentFrame, k = x.getStackAddendum();
|
570
|
-
k !== "" && (f += "%s",
|
571
|
-
var _ =
|
572
|
-
return String(
|
574
|
+
k !== "" && (f += "%s", m = m.concat([k]));
|
575
|
+
var _ = m.map(function(M) {
|
576
|
+
return String(M);
|
573
577
|
});
|
574
578
|
_.unshift("Warning: " + f), Function.prototype.apply.call(console[a], console, _);
|
575
579
|
}
|
576
580
|
}
|
577
|
-
var
|
581
|
+
var R = !1, z = !1, ee = !1, T = !1, le = !1, Te;
|
578
582
|
Te = Symbol.for("react.module.reference");
|
579
583
|
function oe(a) {
|
580
|
-
return !!(typeof a == "string" || typeof a == "function" || a === e || a ===
|
584
|
+
return !!(typeof a == "string" || typeof a == "function" || a === e || a === d || le || a === i || a === h || a === p || T || a === C || R || z || ee || typeof a == "object" && a !== null && (a.$$typeof === E || a.$$typeof === g || a.$$typeof === c || a.$$typeof === s || a.$$typeof === l || // This needs to include all possible module reference object
|
581
585
|
// types supported by any Flight configuration anywhere since
|
582
586
|
// we don't know which Flight build this will end up being used
|
583
587
|
// with.
|
584
588
|
a.$$typeof === Te || a.getModuleId !== void 0));
|
585
589
|
}
|
586
|
-
function
|
590
|
+
function j(a, f, m) {
|
587
591
|
var x = a.displayName;
|
588
592
|
if (x)
|
589
593
|
return x;
|
590
594
|
var k = f.displayName || f.name || "";
|
591
|
-
return k !== "" ?
|
595
|
+
return k !== "" ? m + "(" + k + ")" : m;
|
592
596
|
}
|
593
|
-
function
|
597
|
+
function I(a) {
|
594
598
|
return a.displayName || "Context";
|
595
599
|
}
|
596
600
|
function L(a) {
|
@@ -605,32 +609,32 @@ function Un() {
|
|
605
609
|
return "Fragment";
|
606
610
|
case r:
|
607
611
|
return "Portal";
|
608
|
-
case
|
612
|
+
case d:
|
609
613
|
return "Profiler";
|
610
614
|
case i:
|
611
615
|
return "StrictMode";
|
612
616
|
case h:
|
613
617
|
return "Suspense";
|
614
|
-
case
|
618
|
+
case p:
|
615
619
|
return "SuspenseList";
|
616
620
|
}
|
617
621
|
if (typeof a == "object")
|
618
622
|
switch (a.$$typeof) {
|
619
623
|
case s:
|
620
624
|
var f = a;
|
621
|
-
return
|
625
|
+
return I(f) + ".Consumer";
|
622
626
|
case c:
|
623
|
-
var
|
624
|
-
return
|
625
|
-
case
|
626
|
-
return
|
627
|
+
var m = a;
|
628
|
+
return I(m._context) + ".Provider";
|
629
|
+
case l:
|
630
|
+
return j(a, a.render, "ForwardRef");
|
627
631
|
case g:
|
628
632
|
var x = a.displayName || null;
|
629
633
|
return x !== null ? x : L(a.type) || "Memo";
|
630
634
|
case E: {
|
631
|
-
var k = a, _ = k._payload,
|
635
|
+
var k = a, _ = k._payload, M = k._init;
|
632
636
|
try {
|
633
|
-
return L(
|
637
|
+
return L(M(_));
|
634
638
|
} catch {
|
635
639
|
return null;
|
636
640
|
}
|
@@ -638,14 +642,14 @@ function Un() {
|
|
638
642
|
}
|
639
643
|
return null;
|
640
644
|
}
|
641
|
-
var J = Object.assign, te = 0,
|
645
|
+
var J = Object.assign, te = 0, Me, Ae, Ne, Pe, Le, Ze, Fe;
|
642
646
|
function Je() {
|
643
647
|
}
|
644
648
|
Je.__reactDisabledLog = !0;
|
645
|
-
function
|
649
|
+
function dt() {
|
646
650
|
{
|
647
651
|
if (te === 0) {
|
648
|
-
|
652
|
+
Me = console.log, Ae = console.info, Ne = console.warn, Pe = console.error, Le = console.group, Ze = console.groupCollapsed, Fe = console.groupEnd;
|
649
653
|
var a = {
|
650
654
|
configurable: !0,
|
651
655
|
enumerable: !0,
|
@@ -665,7 +669,7 @@ function Un() {
|
|
665
669
|
te++;
|
666
670
|
}
|
667
671
|
}
|
668
|
-
function
|
672
|
+
function ft() {
|
669
673
|
{
|
670
674
|
if (te--, te === 0) {
|
671
675
|
var a = {
|
@@ -675,16 +679,16 @@ function Un() {
|
|
675
679
|
};
|
676
680
|
Object.defineProperties(console, {
|
677
681
|
log: J({}, a, {
|
678
|
-
value:
|
682
|
+
value: Me
|
679
683
|
}),
|
680
684
|
info: J({}, a, {
|
681
|
-
value:
|
685
|
+
value: Ae
|
682
686
|
}),
|
683
687
|
warn: J({}, a, {
|
684
688
|
value: Ne
|
685
689
|
}),
|
686
690
|
error: J({}, a, {
|
687
|
-
value:
|
691
|
+
value: Pe
|
688
692
|
}),
|
689
693
|
group: J({}, a, {
|
690
694
|
value: Le
|
@@ -701,7 +705,7 @@ function Un() {
|
|
701
705
|
}
|
702
706
|
}
|
703
707
|
var Ue = b.ReactCurrentDispatcher, Be;
|
704
|
-
function
|
708
|
+
function me(a, f, m) {
|
705
709
|
{
|
706
710
|
if (Be === void 0)
|
707
711
|
try {
|
@@ -714,48 +718,48 @@ function Un() {
|
|
714
718
|
` + Be + a;
|
715
719
|
}
|
716
720
|
}
|
717
|
-
var
|
721
|
+
var Re = !1, ge;
|
718
722
|
{
|
719
|
-
var
|
720
|
-
ge = new
|
723
|
+
var ht = typeof WeakMap == "function" ? WeakMap : Map;
|
724
|
+
ge = new ht();
|
721
725
|
}
|
722
726
|
function Qe(a, f) {
|
723
|
-
if (!a ||
|
727
|
+
if (!a || Re)
|
724
728
|
return "";
|
725
729
|
{
|
726
|
-
var
|
727
|
-
if (
|
728
|
-
return
|
730
|
+
var m = ge.get(a);
|
731
|
+
if (m !== void 0)
|
732
|
+
return m;
|
729
733
|
}
|
730
734
|
var x;
|
731
|
-
|
735
|
+
Re = !0;
|
732
736
|
var k = Error.prepareStackTrace;
|
733
737
|
Error.prepareStackTrace = void 0;
|
734
738
|
var _;
|
735
|
-
_ = Ue.current, Ue.current = null,
|
739
|
+
_ = Ue.current, Ue.current = null, dt();
|
736
740
|
try {
|
737
741
|
if (f) {
|
738
|
-
var
|
742
|
+
var M = function() {
|
739
743
|
throw Error();
|
740
744
|
};
|
741
|
-
if (Object.defineProperty(
|
745
|
+
if (Object.defineProperty(M.prototype, "props", {
|
742
746
|
set: function() {
|
743
747
|
throw Error();
|
744
748
|
}
|
745
749
|
}), typeof Reflect == "object" && Reflect.construct) {
|
746
750
|
try {
|
747
|
-
Reflect.construct(
|
751
|
+
Reflect.construct(M, []);
|
748
752
|
} catch (se) {
|
749
753
|
x = se;
|
750
754
|
}
|
751
|
-
Reflect.construct(a, [],
|
755
|
+
Reflect.construct(a, [], M);
|
752
756
|
} else {
|
753
757
|
try {
|
754
|
-
|
758
|
+
M.call();
|
755
759
|
} catch (se) {
|
756
760
|
x = se;
|
757
761
|
}
|
758
|
-
a.call(
|
762
|
+
a.call(M.prototype);
|
759
763
|
}
|
760
764
|
} else {
|
761
765
|
try {
|
@@ -785,71 +789,71 @@ function Un() {
|
|
785
789
|
}
|
786
790
|
}
|
787
791
|
} finally {
|
788
|
-
|
792
|
+
Re = !1, Ue.current = _, ft(), Error.prepareStackTrace = k;
|
789
793
|
}
|
790
|
-
var ke = a ? a.displayName || a.name : "",
|
791
|
-
return typeof a == "function" && ge.set(a,
|
794
|
+
var ke = a ? a.displayName || a.name : "", Mt = ke ? me(ke) : "";
|
795
|
+
return typeof a == "function" && ge.set(a, Mt), Mt;
|
792
796
|
}
|
793
|
-
function et(a, f,
|
797
|
+
function et(a, f, m) {
|
794
798
|
return Qe(a, !1);
|
795
799
|
}
|
796
800
|
function tt(a) {
|
797
801
|
var f = a.prototype;
|
798
802
|
return !!(f && f.isReactComponent);
|
799
803
|
}
|
800
|
-
function ve(a, f,
|
804
|
+
function ve(a, f, m) {
|
801
805
|
if (a == null)
|
802
806
|
return "";
|
803
807
|
if (typeof a == "function")
|
804
808
|
return Qe(a, tt(a));
|
805
809
|
if (typeof a == "string")
|
806
|
-
return
|
810
|
+
return me(a);
|
807
811
|
switch (a) {
|
808
812
|
case h:
|
809
|
-
return
|
810
|
-
case
|
811
|
-
return
|
813
|
+
return me("Suspense");
|
814
|
+
case p:
|
815
|
+
return me("SuspenseList");
|
812
816
|
}
|
813
817
|
if (typeof a == "object")
|
814
818
|
switch (a.$$typeof) {
|
815
|
-
case
|
819
|
+
case l:
|
816
820
|
return et(a.render);
|
817
821
|
case g:
|
818
|
-
return ve(a.type, f,
|
822
|
+
return ve(a.type, f, m);
|
819
823
|
case E: {
|
820
824
|
var x = a, k = x._payload, _ = x._init;
|
821
825
|
try {
|
822
|
-
return ve(_(k), f,
|
826
|
+
return ve(_(k), f, m);
|
823
827
|
} catch {
|
824
828
|
}
|
825
829
|
}
|
826
830
|
}
|
827
831
|
return "";
|
828
832
|
}
|
829
|
-
var
|
833
|
+
var je = Object.prototype.hasOwnProperty, nt = {}, $e = b.ReactDebugCurrentFrame;
|
830
834
|
function ue(a) {
|
831
835
|
if (a) {
|
832
|
-
var f = a._owner,
|
833
|
-
$e.setExtraStackFrame(
|
836
|
+
var f = a._owner, m = ve(a.type, a._source, f ? f.type : null);
|
837
|
+
$e.setExtraStackFrame(m);
|
834
838
|
} else
|
835
839
|
$e.setExtraStackFrame(null);
|
836
840
|
}
|
837
|
-
function be(a, f,
|
841
|
+
function be(a, f, m, x, k) {
|
838
842
|
{
|
839
|
-
var _ = Function.call.bind(
|
840
|
-
for (var
|
841
|
-
if (_(a,
|
843
|
+
var _ = Function.call.bind(je);
|
844
|
+
for (var M in a)
|
845
|
+
if (_(a, M)) {
|
842
846
|
var S = void 0;
|
843
847
|
try {
|
844
|
-
if (typeof a[
|
845
|
-
var X = Error((x || "React class") + ": " +
|
848
|
+
if (typeof a[M] != "function") {
|
849
|
+
var X = Error((x || "React class") + ": " + m + " type `" + M + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof a[M] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
846
850
|
throw X.name = "Invariant Violation", X;
|
847
851
|
}
|
848
|
-
S = a[
|
852
|
+
S = a[M](f, M, x, m, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
849
853
|
} catch (B) {
|
850
854
|
S = B;
|
851
855
|
}
|
852
|
-
S && !(S instanceof Error) && (ue(k), v("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", x || "React class",
|
856
|
+
S && !(S instanceof Error) && (ue(k), v("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", x || "React class", m, M, typeof S), ue(null)), S instanceof Error && !(S.message in nt) && (nt[S.message] = !0, ue(k), v("Failed %s type: %s", m, S.message), ue(null));
|
853
857
|
}
|
854
858
|
}
|
855
859
|
}
|
@@ -859,8 +863,8 @@ function Un() {
|
|
859
863
|
}
|
860
864
|
function at(a) {
|
861
865
|
{
|
862
|
-
var f = typeof Symbol == "function" && Symbol.toStringTag,
|
863
|
-
return
|
866
|
+
var f = typeof Symbol == "function" && Symbol.toStringTag, m = f && a[Symbol.toStringTag] || a.constructor.name || "Object";
|
867
|
+
return m;
|
864
868
|
}
|
865
869
|
}
|
866
870
|
function Ye(a) {
|
@@ -877,7 +881,7 @@ function Un() {
|
|
877
881
|
if (Ye(a))
|
878
882
|
return v("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", at(a)), rt(a);
|
879
883
|
}
|
880
|
-
var de = b.ReactCurrentOwner,
|
884
|
+
var de = b.ReactCurrentOwner, mt = {
|
881
885
|
key: !0,
|
882
886
|
ref: !0,
|
883
887
|
__self: !0,
|
@@ -885,7 +889,7 @@ function Un() {
|
|
885
889
|
}, ot, Ve, ye;
|
886
890
|
ye = {};
|
887
891
|
function o(a) {
|
888
|
-
if (
|
892
|
+
if (je.call(a, "ref")) {
|
889
893
|
var f = Object.getOwnPropertyDescriptor(a, "ref").get;
|
890
894
|
if (f && f.isReactWarning)
|
891
895
|
return !1;
|
@@ -893,7 +897,7 @@ function Un() {
|
|
893
897
|
return a.ref !== void 0;
|
894
898
|
}
|
895
899
|
function w(a) {
|
896
|
-
if (
|
900
|
+
if (je.call(a, "key")) {
|
897
901
|
var f = Object.getOwnPropertyDescriptor(a, "key").get;
|
898
902
|
if (f && f.isReactWarning)
|
899
903
|
return !1;
|
@@ -902,41 +906,41 @@ function Un() {
|
|
902
906
|
}
|
903
907
|
function F(a, f) {
|
904
908
|
if (typeof a.ref == "string" && de.current && f && de.current.stateNode !== f) {
|
905
|
-
var
|
906
|
-
ye[
|
909
|
+
var m = L(de.current.type);
|
910
|
+
ye[m] || (v('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', L(de.current.type), a.ref), ye[m] = !0);
|
907
911
|
}
|
908
912
|
}
|
909
913
|
function U(a, f) {
|
910
914
|
{
|
911
|
-
var
|
915
|
+
var m = function() {
|
912
916
|
ot || (ot = !0, v("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", f));
|
913
917
|
};
|
914
|
-
|
915
|
-
get:
|
918
|
+
m.isReactWarning = !0, Object.defineProperty(a, "key", {
|
919
|
+
get: m,
|
916
920
|
configurable: !0
|
917
921
|
});
|
918
922
|
}
|
919
923
|
}
|
920
924
|
function K(a, f) {
|
921
925
|
{
|
922
|
-
var
|
926
|
+
var m = function() {
|
923
927
|
Ve || (Ve = !0, v("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", f));
|
924
928
|
};
|
925
|
-
|
926
|
-
get:
|
929
|
+
m.isReactWarning = !0, Object.defineProperty(a, "ref", {
|
930
|
+
get: m,
|
927
931
|
configurable: !0
|
928
932
|
});
|
929
933
|
}
|
930
934
|
}
|
931
|
-
var fe = function(a, f,
|
935
|
+
var fe = function(a, f, m, x, k, _, M) {
|
932
936
|
var S = {
|
933
937
|
// This tag allows us to uniquely identify this as a React Element
|
934
938
|
$$typeof: n,
|
935
939
|
// Built-in properties that belong on the element
|
936
940
|
type: a,
|
937
941
|
key: f,
|
938
|
-
ref:
|
939
|
-
props:
|
942
|
+
ref: m,
|
943
|
+
props: M,
|
940
944
|
// Record the component responsible for creating this element.
|
941
945
|
_owner: _
|
942
946
|
};
|
@@ -957,29 +961,29 @@ function Un() {
|
|
957
961
|
value: k
|
958
962
|
}), Object.freeze && (Object.freeze(S.props), Object.freeze(S)), S;
|
959
963
|
};
|
960
|
-
function ie(a, f,
|
964
|
+
function ie(a, f, m, x, k) {
|
961
965
|
{
|
962
|
-
var _,
|
963
|
-
|
966
|
+
var _, M = {}, S = null, X = null;
|
967
|
+
m !== void 0 && (it(m), S = "" + m), w(f) && (it(f.key), S = "" + f.key), o(f) && (X = f.ref, F(f, k));
|
964
968
|
for (_ in f)
|
965
|
-
|
969
|
+
je.call(f, _) && !mt.hasOwnProperty(_) && (M[_] = f[_]);
|
966
970
|
if (a && a.defaultProps) {
|
967
971
|
var B = a.defaultProps;
|
968
972
|
for (_ in B)
|
969
|
-
|
973
|
+
M[_] === void 0 && (M[_] = B[_]);
|
970
974
|
}
|
971
975
|
if (S || X) {
|
972
976
|
var Y = typeof a == "function" ? a.displayName || a.name || "Unknown" : a;
|
973
|
-
S && U(
|
977
|
+
S && U(M, Y), X && K(M, Y);
|
974
978
|
}
|
975
|
-
return fe(a, S, X, k, x, de.current,
|
979
|
+
return fe(a, S, X, k, x, de.current, M);
|
976
980
|
}
|
977
981
|
}
|
978
982
|
var st = b.ReactCurrentOwner, ze = b.ReactDebugCurrentFrame;
|
979
983
|
function W(a) {
|
980
984
|
if (a) {
|
981
|
-
var f = a._owner,
|
982
|
-
ze.setExtraStackFrame(
|
985
|
+
var f = a._owner, m = ve(a.type, a._source, f ? f.type : null);
|
986
|
+
ze.setExtraStackFrame(m);
|
983
987
|
} else
|
984
988
|
ze.setExtraStackFrame(null);
|
985
989
|
}
|
@@ -988,7 +992,7 @@ function Un() {
|
|
988
992
|
function he(a) {
|
989
993
|
return typeof a == "object" && a !== null && a.$$typeof === n;
|
990
994
|
}
|
991
|
-
function
|
995
|
+
function pe() {
|
992
996
|
{
|
993
997
|
if (st.current) {
|
994
998
|
var a = L(st.current.type);
|
@@ -1003,76 +1007,76 @@ Check the render method of \`` + a + "`.";
|
|
1003
1007
|
function Ee(a) {
|
1004
1008
|
{
|
1005
1009
|
if (a !== void 0) {
|
1006
|
-
var f = a.fileName.replace(/^.*[\\\/]/, ""),
|
1010
|
+
var f = a.fileName.replace(/^.*[\\\/]/, ""), m = a.lineNumber;
|
1007
1011
|
return `
|
1008
1012
|
|
1009
|
-
Check your code at ` + f + ":" +
|
1013
|
+
Check your code at ` + f + ":" + m + ".";
|
1010
1014
|
}
|
1011
1015
|
return "";
|
1012
1016
|
}
|
1013
1017
|
}
|
1014
1018
|
var we = {};
|
1015
|
-
function
|
1019
|
+
function Jt(a) {
|
1016
1020
|
{
|
1017
|
-
var f =
|
1021
|
+
var f = pe();
|
1018
1022
|
if (!f) {
|
1019
|
-
var
|
1020
|
-
|
1023
|
+
var m = typeof a == "string" ? a : a.displayName || a.name;
|
1024
|
+
m && (f = `
|
1021
1025
|
|
1022
|
-
Check the top-level render call using <` +
|
1026
|
+
Check the top-level render call using <` + m + ">.");
|
1023
1027
|
}
|
1024
1028
|
return f;
|
1025
1029
|
}
|
1026
1030
|
}
|
1027
|
-
function
|
1031
|
+
function St(a, f) {
|
1028
1032
|
{
|
1029
1033
|
if (!a._store || a._store.validated || a.key != null)
|
1030
1034
|
return;
|
1031
1035
|
a._store.validated = !0;
|
1032
|
-
var
|
1033
|
-
if (we[
|
1036
|
+
var m = Jt(f);
|
1037
|
+
if (we[m])
|
1034
1038
|
return;
|
1035
|
-
we[
|
1039
|
+
we[m] = !0;
|
1036
1040
|
var x = "";
|
1037
|
-
a && a._owner && a._owner !== st.current && (x = " It was passed a child from " + L(a._owner.type) + "."), W(a), v('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',
|
1041
|
+
a && a._owner && a._owner !== st.current && (x = " It was passed a child from " + L(a._owner.type) + "."), W(a), v('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', m, x), W(null);
|
1038
1042
|
}
|
1039
1043
|
}
|
1040
|
-
function
|
1044
|
+
function Ot(a, f) {
|
1041
1045
|
{
|
1042
1046
|
if (typeof a != "object")
|
1043
1047
|
return;
|
1044
1048
|
if (Ge(a))
|
1045
|
-
for (var
|
1046
|
-
var x = a[
|
1047
|
-
he(x) &&
|
1049
|
+
for (var m = 0; m < a.length; m++) {
|
1050
|
+
var x = a[m];
|
1051
|
+
he(x) && St(x, f);
|
1048
1052
|
}
|
1049
1053
|
else if (he(a))
|
1050
1054
|
a._store && (a._store.validated = !0);
|
1051
1055
|
else if (a) {
|
1052
1056
|
var k = y(a);
|
1053
1057
|
if (typeof k == "function" && k !== a.entries)
|
1054
|
-
for (var _ = k.call(a),
|
1055
|
-
he(
|
1058
|
+
for (var _ = k.call(a), M; !(M = _.next()).done; )
|
1059
|
+
he(M.value) && St(M.value, f);
|
1056
1060
|
}
|
1057
1061
|
}
|
1058
1062
|
}
|
1059
|
-
function
|
1063
|
+
function Qt(a) {
|
1060
1064
|
{
|
1061
1065
|
var f = a.type;
|
1062
1066
|
if (f == null || typeof f == "string")
|
1063
1067
|
return;
|
1064
|
-
var
|
1068
|
+
var m;
|
1065
1069
|
if (typeof f == "function")
|
1066
|
-
|
1067
|
-
else if (typeof f == "object" && (f.$$typeof ===
|
1070
|
+
m = f.propTypes;
|
1071
|
+
else if (typeof f == "object" && (f.$$typeof === l || // Note: Memo only checks outer props here.
|
1068
1072
|
// Inner props are checked in the reconciler.
|
1069
1073
|
f.$$typeof === g))
|
1070
|
-
|
1074
|
+
m = f.propTypes;
|
1071
1075
|
else
|
1072
1076
|
return;
|
1073
|
-
if (
|
1077
|
+
if (m) {
|
1074
1078
|
var x = L(f);
|
1075
|
-
be(
|
1079
|
+
be(m, a.props, "prop", x, a);
|
1076
1080
|
} else if (f.PropTypes !== void 0 && !Q) {
|
1077
1081
|
Q = !0;
|
1078
1082
|
var k = L(f);
|
@@ -1081,10 +1085,10 @@ Check the top-level render call using <` + p + ">.");
|
|
1081
1085
|
typeof f.getDefaultProps == "function" && !f.getDefaultProps.isReactClassApproved && v("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
1082
1086
|
}
|
1083
1087
|
}
|
1084
|
-
function
|
1088
|
+
function en(a) {
|
1085
1089
|
{
|
1086
|
-
for (var f = Object.keys(a.props),
|
1087
|
-
var x = f[
|
1090
|
+
for (var f = Object.keys(a.props), m = 0; m < f.length; m++) {
|
1091
|
+
var x = f[m];
|
1088
1092
|
if (x !== "children" && x !== "key") {
|
1089
1093
|
W(a), v("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", x), W(null);
|
1090
1094
|
break;
|
@@ -1093,56 +1097,56 @@ Check the top-level render call using <` + p + ">.");
|
|
1093
1097
|
a.ref !== null && (W(a), v("Invalid attribute `ref` supplied to `React.Fragment`."), W(null));
|
1094
1098
|
}
|
1095
1099
|
}
|
1096
|
-
function
|
1100
|
+
function Tt(a, f, m, x, k, _) {
|
1097
1101
|
{
|
1098
|
-
var
|
1099
|
-
if (!
|
1102
|
+
var M = oe(a);
|
1103
|
+
if (!M) {
|
1100
1104
|
var S = "";
|
1101
1105
|
(a === void 0 || typeof a == "object" && a !== null && Object.keys(a).length === 0) && (S += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
1102
1106
|
var X = Ee(k);
|
1103
|
-
X ? S += X : S +=
|
1107
|
+
X ? S += X : S += pe();
|
1104
1108
|
var B;
|
1105
1109
|
a === null ? B = "null" : Ge(a) ? B = "array" : a !== void 0 && a.$$typeof === n ? (B = "<" + (L(a.type) || "Unknown") + " />", S = " Did you accidentally export a JSX literal instead of a component?") : B = typeof a, v("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", B, S);
|
1106
1110
|
}
|
1107
|
-
var Y = ie(a, f,
|
1111
|
+
var Y = ie(a, f, m, k, _);
|
1108
1112
|
if (Y == null)
|
1109
1113
|
return Y;
|
1110
|
-
if (
|
1114
|
+
if (M) {
|
1111
1115
|
var ne = f.children;
|
1112
1116
|
if (ne !== void 0)
|
1113
1117
|
if (x)
|
1114
1118
|
if (Ge(ne)) {
|
1115
1119
|
for (var ke = 0; ke < ne.length; ke++)
|
1116
|
-
|
1120
|
+
Ot(ne[ke], a);
|
1117
1121
|
Object.freeze && Object.freeze(ne);
|
1118
1122
|
} else
|
1119
1123
|
v("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
1120
1124
|
else
|
1121
|
-
|
1125
|
+
Ot(ne, a);
|
1122
1126
|
}
|
1123
|
-
return a === e ?
|
1127
|
+
return a === e ? en(Y) : Qt(Y), Y;
|
1124
1128
|
}
|
1125
1129
|
}
|
1126
|
-
function
|
1127
|
-
return
|
1130
|
+
function tn(a, f, m) {
|
1131
|
+
return Tt(a, f, m, !0);
|
1128
1132
|
}
|
1129
|
-
function
|
1130
|
-
return
|
1133
|
+
function nn(a, f, m) {
|
1134
|
+
return Tt(a, f, m, !1);
|
1131
1135
|
}
|
1132
|
-
var
|
1133
|
-
Ke.Fragment = e, Ke.jsx =
|
1136
|
+
var an = nn, rn = tn;
|
1137
|
+
Ke.Fragment = e, Ke.jsx = an, Ke.jsxs = rn;
|
1134
1138
|
}()), Ke;
|
1135
1139
|
}
|
1136
|
-
process.env.NODE_ENV === "production" ? Et.exports =
|
1137
|
-
var
|
1138
|
-
function
|
1139
|
-
return t.title.search("<") > -1 ? /* @__PURE__ */
|
1140
|
+
process.env.NODE_ENV === "production" ? Et.exports = Nn() : Et.exports = Ln();
|
1141
|
+
var u = Et.exports;
|
1142
|
+
function qt(t) {
|
1143
|
+
return t.title.search("<") > -1 ? /* @__PURE__ */ u.jsx("button", { className: "svg", dangerouslySetInnerHTML: { __html: t.title } }) : /* @__PURE__ */ u.jsx("button", { children: t.title });
|
1140
1144
|
}
|
1141
|
-
const
|
1142
|
-
/* @__PURE__ */
|
1143
|
-
/* @__PURE__ */
|
1144
|
-
/* @__PURE__ */
|
1145
|
-
] }),
|
1145
|
+
const Fn = /* @__PURE__ */ u.jsxs("svg", { className: "closeIcon", width: "14", height: "14", fill: "none", stroke: "#666666", strokeMiterlimit: "10", children: [
|
1146
|
+
/* @__PURE__ */ u.jsx("circle", { cx: "7", cy: "7", r: "6" }),
|
1147
|
+
/* @__PURE__ */ u.jsx("line", { x1: "4", y1: "4", x2: "10", y2: "10" }),
|
1148
|
+
/* @__PURE__ */ u.jsx("line", { x1: "4", y1: "10", x2: "10", y2: "4" })
|
1149
|
+
] }), Un = /* @__PURE__ */ u.jsx("svg", { className: "dragIcon", width: "14", height: "14", fill: "#666666", stroke: "none", children: /* @__PURE__ */ u.jsx(
|
1146
1150
|
"path",
|
1147
1151
|
{
|
1148
1152
|
d: `M10.43,4H3.57C3.26,4,3,4.22,3,4.5v1C3,5.78,3.26,6,3.57,6h6.86C10.74,6,11,5.78,11,5.5v-1
|
@@ -1150,46 +1154,46 @@ C11,4.22,10.74,4,10.43,4z M10.43,8H3.57C3.26,8,3,8.22,3,8.5v1C3,9.78,3.26,10,3.5
|
|
1150
1154
|
C11,8.22,10.74,8,10.43,8z`
|
1151
1155
|
}
|
1152
1156
|
) });
|
1153
|
-
function
|
1154
|
-
return /* @__PURE__ */
|
1155
|
-
|
1156
|
-
/* @__PURE__ */
|
1157
|
-
/* @__PURE__ */
|
1157
|
+
function Bn(t) {
|
1158
|
+
return /* @__PURE__ */ u.jsx(Wt.Item, { value: t.title, children: /* @__PURE__ */ u.jsxs("div", { children: [
|
1159
|
+
Un,
|
1160
|
+
/* @__PURE__ */ u.jsx("span", { children: t.title }),
|
1161
|
+
/* @__PURE__ */ u.jsx("button", { className: "closeIcon", onClick: () => {
|
1158
1162
|
t.onDelete(t.index);
|
1159
|
-
}, children:
|
1163
|
+
}, children: Fn })
|
1160
1164
|
] }) }, t.title);
|
1161
1165
|
}
|
1162
|
-
function
|
1163
|
-
const [n, r] = re(!1), [e, i] = re(t.options),
|
1166
|
+
function $n(t) {
|
1167
|
+
const [n, r] = re(!1), [e, i] = re(t.options), d = (h) => {
|
1164
1168
|
t.onDragComplete(h), i(h);
|
1165
1169
|
}, c = (h) => {
|
1166
|
-
const
|
1167
|
-
|
1170
|
+
const p = [...e];
|
1171
|
+
p.splice(h, 1), d(p);
|
1168
1172
|
}, s = [];
|
1169
|
-
e.forEach((h,
|
1170
|
-
s.push(/* @__PURE__ */
|
1173
|
+
e.forEach((h, p) => {
|
1174
|
+
s.push(/* @__PURE__ */ u.jsx(Bn, { index: p, title: h, onDelete: c }, h));
|
1171
1175
|
});
|
1172
|
-
let
|
1173
|
-
return t.subdropdown && (
|
1174
|
-
/* @__PURE__ */
|
1175
|
-
/* @__PURE__ */
|
1176
|
+
let l = "dropdown draggable";
|
1177
|
+
return t.subdropdown && (l += " subdropdown"), /* @__PURE__ */ u.jsxs("div", { className: l, onMouseEnter: () => r(!0), onMouseLeave: () => r(!1), children: [
|
1178
|
+
/* @__PURE__ */ u.jsx(qt, { title: t.title }),
|
1179
|
+
/* @__PURE__ */ u.jsx(Wt.Group, { axis: "y", values: e, onReorder: d, style: { visibility: n ? "visible" : "hidden" }, children: s })
|
1176
1180
|
] });
|
1177
1181
|
}
|
1178
|
-
function
|
1182
|
+
function Gn(t) {
|
1179
1183
|
const [n, r] = re(!1), e = [];
|
1180
|
-
t.options.map((
|
1181
|
-
t.onSelect !== void 0 && (
|
1184
|
+
t.options.map((d, c) => {
|
1185
|
+
t.onSelect !== void 0 && (d.onSelect = t.onSelect), e.push(/* @__PURE__ */ u.jsx(Yn, { option: d }, c));
|
1182
1186
|
});
|
1183
1187
|
let i = "dropdown";
|
1184
|
-
return t.subdropdown && (i += " subdropdown"), /* @__PURE__ */
|
1188
|
+
return t.subdropdown && (i += " subdropdown"), /* @__PURE__ */ u.jsxs(
|
1185
1189
|
"div",
|
1186
1190
|
{
|
1187
1191
|
className: i,
|
1188
1192
|
onMouseEnter: () => r(!0),
|
1189
1193
|
onMouseLeave: () => r(!1),
|
1190
1194
|
children: [
|
1191
|
-
/* @__PURE__ */
|
1192
|
-
/* @__PURE__ */
|
1195
|
+
/* @__PURE__ */ u.jsx(qt, { title: t.title }),
|
1196
|
+
/* @__PURE__ */ u.jsx(
|
1193
1197
|
"ul",
|
1194
1198
|
{
|
1195
1199
|
style: { visibility: n ? "visible" : "hidden" },
|
@@ -1200,26 +1204,26 @@ function Vn(t) {
|
|
1200
1204
|
}
|
1201
1205
|
);
|
1202
1206
|
}
|
1203
|
-
function
|
1207
|
+
function Yn(t) {
|
1204
1208
|
const { option: n } = t, [r, e] = re("");
|
1205
1209
|
let i;
|
1206
1210
|
switch (n.type) {
|
1207
1211
|
case "draggable":
|
1208
|
-
i = /* @__PURE__ */
|
1209
|
-
|
1212
|
+
i = /* @__PURE__ */ u.jsx(
|
1213
|
+
$n,
|
1210
1214
|
{
|
1211
1215
|
title: n.title,
|
1212
1216
|
options: n.value,
|
1213
|
-
onDragComplete: (
|
1214
|
-
n.onDragComplete !== void 0 && n.onDragComplete(
|
1217
|
+
onDragComplete: (d) => {
|
1218
|
+
n.onDragComplete !== void 0 && n.onDragComplete(d);
|
1215
1219
|
},
|
1216
1220
|
subdropdown: !0
|
1217
1221
|
}
|
1218
1222
|
);
|
1219
1223
|
break;
|
1220
1224
|
case "dropdown":
|
1221
|
-
i = /* @__PURE__ */
|
1222
|
-
|
1225
|
+
i = /* @__PURE__ */ u.jsx(
|
1226
|
+
Gn,
|
1223
1227
|
{
|
1224
1228
|
title: n.title,
|
1225
1229
|
options: n.value,
|
@@ -1229,7 +1233,7 @@ function zn(t) {
|
|
1229
1233
|
);
|
1230
1234
|
break;
|
1231
1235
|
case "option":
|
1232
|
-
i = /* @__PURE__ */
|
1236
|
+
i = /* @__PURE__ */ u.jsx(
|
1233
1237
|
"button",
|
1234
1238
|
{
|
1235
1239
|
onClick: () => {
|
@@ -1240,31 +1244,31 @@ function zn(t) {
|
|
1240
1244
|
);
|
1241
1245
|
break;
|
1242
1246
|
}
|
1243
|
-
return /* @__PURE__ */
|
1247
|
+
return /* @__PURE__ */ u.jsx("li", { className: r === n.title ? "selected" : "", children: i }, Rn());
|
1244
1248
|
}
|
1245
|
-
function
|
1249
|
+
function Sa(t) {
|
1246
1250
|
let n;
|
1247
1251
|
function r(c) {
|
1248
|
-
var
|
1252
|
+
var l, h, p, g, E, C, P, D, y;
|
1249
1253
|
let s;
|
1250
1254
|
switch (c.event) {
|
1251
1255
|
case "custom":
|
1252
|
-
|
1256
|
+
A.dispatchEvent({ type: N.CUSTOM, value: c.data });
|
1253
1257
|
break;
|
1254
1258
|
case "selectComponent":
|
1255
|
-
|
1259
|
+
A.dispatchEvent({ type: N.SELECT_DROPDOWN, value: c.data });
|
1256
1260
|
break;
|
1257
1261
|
case "draggableListUpdate":
|
1258
|
-
|
1262
|
+
A.dispatchEvent({ type: N.DRAG_UPDATE, value: c.data });
|
1259
1263
|
break;
|
1260
1264
|
case "addFolder":
|
1261
|
-
(
|
1265
|
+
(l = t.components.get("debug")) == null || l.addFolder(c.data.name, c.data.params, c.data.parent);
|
1262
1266
|
break;
|
1263
1267
|
case "bindObject":
|
1264
1268
|
(h = t.components.get("debug")) == null || h.bind(c.data.name, c.data.params, c.data.parent);
|
1265
1269
|
break;
|
1266
1270
|
case "updateBind":
|
1267
|
-
(
|
1271
|
+
(p = t.components.get("debug")) == null || p.triggerBind(c.data.id, c.data.value);
|
1268
1272
|
break;
|
1269
1273
|
case "addButton":
|
1270
1274
|
(g = t.components.get("debug")) == null || g.button(c.data.name, c.data.callback, c.data.parent);
|
@@ -1276,7 +1280,7 @@ function Ta(t) {
|
|
1276
1280
|
s = (C = t.components.get("theatre")) == null ? void 0 : C.sheets.get(c.data.sheet), s !== void 0 && (n = s, We.setSelection([s]));
|
1277
1281
|
break;
|
1278
1282
|
case "setSheetObject":
|
1279
|
-
s = (
|
1283
|
+
s = (P = t.components.get("theatre")) == null ? void 0 : P.sheetObjects.get(`${c.data.sheet}_${c.data.key}`), s !== void 0 && We.setSelection([s]);
|
1280
1284
|
break;
|
1281
1285
|
case "updateSheetObject":
|
1282
1286
|
s = (D = t.components.get("theatre")) == null ? void 0 : D.sheetObjectCBs.get(c.data.sheetObject), s !== void 0 && s(c.data.values);
|
@@ -1285,54 +1289,54 @@ function Ta(t) {
|
|
1285
1289
|
n = (y = t.components.get("theatre")) == null ? void 0 : y.sheets.get(c.data.sheet), n !== void 0 && (n.sequence.position = c.data.position);
|
1286
1290
|
break;
|
1287
1291
|
case "getScene":
|
1288
|
-
|
1292
|
+
A.dispatchEvent({ type: N.GET_SCENE });
|
1289
1293
|
break;
|
1290
1294
|
case "getObject":
|
1291
|
-
|
1295
|
+
A.dispatchEvent({ type: N.GET_OBJECT, value: c.data });
|
1292
1296
|
break;
|
1293
1297
|
case "updateObject":
|
1294
|
-
|
1298
|
+
A.dispatchEvent({ type: N.UPDATE_OBJECT, value: c.data });
|
1295
1299
|
break;
|
1296
1300
|
case "createTexture":
|
1297
|
-
|
1301
|
+
A.dispatchEvent({ type: N.CREATE_TEXTURE, value: c.data });
|
1298
1302
|
break;
|
1299
1303
|
case "requestMethod":
|
1300
|
-
|
1304
|
+
A.dispatchEvent({ type: N.REQUEST_METHOD, value: c.data });
|
1301
1305
|
break;
|
1302
1306
|
}
|
1303
1307
|
}
|
1304
1308
|
function e(c) {
|
1305
1309
|
switch (c.event) {
|
1306
1310
|
case "custom":
|
1307
|
-
|
1311
|
+
A.dispatchEvent({ type: N.CUSTOM, value: c.data });
|
1308
1312
|
break;
|
1309
1313
|
case "setObject":
|
1310
|
-
|
1314
|
+
A.dispatchEvent({ type: N.SET_OBJECT, value: c.data });
|
1311
1315
|
break;
|
1312
1316
|
case "setScene":
|
1313
|
-
|
1317
|
+
A.dispatchEvent({ type: N.SET_SCENE, value: c.data });
|
1314
1318
|
break;
|
1315
1319
|
}
|
1316
1320
|
}
|
1317
1321
|
function i() {
|
1318
1322
|
We.ui.hide();
|
1319
1323
|
}
|
1320
|
-
function
|
1324
|
+
function d() {
|
1321
1325
|
We.ui.restore(), We.onSelectionChange((h) => {
|
1322
|
-
h.length < 1 || h.forEach((
|
1323
|
-
var
|
1324
|
-
let g =
|
1325
|
-
switch (
|
1326
|
+
h.length < 1 || h.forEach((p) => {
|
1327
|
+
var P;
|
1328
|
+
let g = p.address.sheetId, E = "setSheet", C = {};
|
1329
|
+
switch (p.type) {
|
1326
1330
|
case "Theatre_Sheet_PublicAPI":
|
1327
1331
|
E = "setSheet", C = {
|
1328
|
-
sheet:
|
1329
|
-
}, n = (
|
1332
|
+
sheet: p.address.sheetId
|
1333
|
+
}, n = (P = t.components.get("theatre")) == null ? void 0 : P.sheets.get(p.address.sheetId);
|
1330
1334
|
break;
|
1331
1335
|
case "Theatre_SheetObject_PublicAPI":
|
1332
|
-
E = "setSheetObject", g += `_${
|
1336
|
+
E = "setSheetObject", g += `_${p.address.objectKey}`, C = {
|
1333
1337
|
id: g,
|
1334
|
-
sheet:
|
1335
|
-
key:
|
1338
|
+
sheet: p.address.sheetId,
|
1339
|
+
key: p.address.objectKey
|
1336
1340
|
};
|
1337
1341
|
break;
|
1338
1342
|
}
|
@@ -1353,19 +1357,19 @@ function Ta(t) {
|
|
1353
1357
|
}
|
1354
1358
|
});
|
1355
1359
|
}
|
1356
|
-
},
|
1357
|
-
s(), requestAnimationFrame(
|
1360
|
+
}, l = () => {
|
1361
|
+
s(), requestAnimationFrame(l);
|
1358
1362
|
};
|
1359
|
-
s(),
|
1363
|
+
s(), l();
|
1360
1364
|
}
|
1361
1365
|
t.listen((c) => {
|
1362
1366
|
t.editor ? e(c) : r(c);
|
1363
|
-
}), t.editor ?
|
1367
|
+
}), t.editor ? d() : i();
|
1364
1368
|
}
|
1365
1369
|
function wt(t) {
|
1366
1370
|
const [n, r] = re(t.open !== void 0 ? t.open : !0), e = !n || t.children === void 0;
|
1367
|
-
return /* @__PURE__ */
|
1368
|
-
/* @__PURE__ */
|
1371
|
+
return /* @__PURE__ */ u.jsxs("div", { className: `accordion ${e ? "hide" : ""}`, children: [
|
1372
|
+
/* @__PURE__ */ u.jsxs(
|
1369
1373
|
"button",
|
1370
1374
|
{
|
1371
1375
|
className: "toggle",
|
@@ -1374,28 +1378,28 @@ function wt(t) {
|
|
1374
1378
|
t.onToggle !== void 0 && t.onToggle(i), r(i);
|
1375
1379
|
},
|
1376
1380
|
children: [
|
1377
|
-
/* @__PURE__ */
|
1381
|
+
/* @__PURE__ */ u.jsx(
|
1378
1382
|
"p",
|
1379
1383
|
{
|
1380
1384
|
className: `status ${n ? "open" : ""}`,
|
1381
1385
|
children: "Toggle"
|
1382
1386
|
}
|
1383
1387
|
),
|
1384
|
-
/* @__PURE__ */
|
1388
|
+
/* @__PURE__ */ u.jsx("p", { className: "label", children: t.label })
|
1385
1389
|
]
|
1386
1390
|
}
|
1387
1391
|
),
|
1388
1392
|
t.button,
|
1389
|
-
/* @__PURE__ */
|
1393
|
+
/* @__PURE__ */ u.jsx("div", { className: n ? "open" : "", children: /* @__PURE__ */ u.jsx("div", { children: t.children }) })
|
1390
1394
|
] });
|
1391
1395
|
}
|
1392
|
-
function
|
1393
|
-
const [n, r] = re(
|
1394
|
-
return t.child.children.length > 0 && t.child.children.map((
|
1395
|
-
i.push(/* @__PURE__ */
|
1396
|
-
}), /* @__PURE__ */
|
1397
|
-
/* @__PURE__ */
|
1398
|
-
e ? /* @__PURE__ */
|
1396
|
+
function Zt(t) {
|
1397
|
+
const [n, r] = re(!1), e = t.child.children.length > 0, i = [];
|
1398
|
+
return t.child.children.length > 0 && t.child.children.map((d) => {
|
1399
|
+
i.push(/* @__PURE__ */ u.jsx(Zt, { child: d, three: t.three }, Math.random()));
|
1400
|
+
}), /* @__PURE__ */ u.jsxs("div", { className: "childObject", children: [
|
1401
|
+
/* @__PURE__ */ u.jsxs("div", { className: "child", children: [
|
1402
|
+
e ? /* @__PURE__ */ u.jsx(
|
1399
1403
|
"button",
|
1400
1404
|
{
|
1401
1405
|
className: "status",
|
@@ -1407,7 +1411,7 @@ function Jt(t) {
|
|
1407
1411
|
}
|
1408
1412
|
}
|
1409
1413
|
) : null,
|
1410
|
-
/* @__PURE__ */
|
1414
|
+
/* @__PURE__ */ u.jsx(
|
1411
1415
|
"button",
|
1412
1416
|
{
|
1413
1417
|
className: "name",
|
@@ -1420,31 +1424,31 @@ function Jt(t) {
|
|
1420
1424
|
children: t.child.name.length > 0 ? `${t.child.name} (${t.child.type})` : `${t.child.type}::${t.child.uuid}`
|
1421
1425
|
}
|
1422
1426
|
),
|
1423
|
-
/* @__PURE__ */
|
1427
|
+
/* @__PURE__ */ u.jsx("div", { className: `icon ${Dn(t.child)}` })
|
1424
1428
|
] }),
|
1425
|
-
/* @__PURE__ */
|
1429
|
+
/* @__PURE__ */ u.jsx("div", { className: n ? "open" : "", children: /* @__PURE__ */ u.jsx("div", { className: "container", children: i }) })
|
1426
1430
|
] }, Math.random());
|
1427
1431
|
}
|
1428
|
-
function
|
1432
|
+
function Vn(t) {
|
1429
1433
|
const n = [];
|
1430
1434
|
return t.child.children.map((r) => {
|
1431
|
-
n.push(/* @__PURE__ */
|
1432
|
-
}), /* @__PURE__ */
|
1435
|
+
n.push(/* @__PURE__ */ u.jsx(Zt, { child: r, three: t.three }, Math.random()));
|
1436
|
+
}), /* @__PURE__ */ u.jsx("div", { className: `scene ${t.class !== void 0 ? t.class : ""}`, children: n });
|
1433
1437
|
}
|
1434
|
-
const
|
1435
|
-
function
|
1438
|
+
const zn = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA5klEQVRoge2Y0Q6EIAwE6cX//+X6cCFpSMEKVTdk501OpRNKiyelFC0b8Ps6gCwoggZF0KAIGhRBgyJoUAQNiqCxjciR9SLV//eZiAyvK3U8i/QVaQO2YyLSFVvlkdTKDjJCukh2ykR5ZEW+kHmlatl90RaBtDkK/w7CYhuRUEO0ee3l+J3m55Vm+17vtwjTnV1V3QA8qfbeUXCzRWDpiLLS+OyzvRW7IzW9R+okvclsqR09743bo0yUpc1+lSJvNsa002+Euk9GKzV7SmZDRIMiaFAEDYqgQRE0KIIGRdCgCBoUQeMEMERadX7YUz8AAAAASUVORK5CYII=";
|
1439
|
+
function Wn(t) {
|
1436
1440
|
return "items" in t;
|
1437
1441
|
}
|
1438
|
-
function
|
1442
|
+
function Ie(t) {
|
1439
1443
|
function n(e, i) {
|
1440
1444
|
console.log("onChange:", e, i);
|
1441
1445
|
}
|
1442
1446
|
const r = [];
|
1443
1447
|
return t.items.forEach((e) => {
|
1444
|
-
|
1445
|
-
/* @__PURE__ */
|
1448
|
+
Wn(e) ? r.push(
|
1449
|
+
/* @__PURE__ */ u.jsx(Ie, { title: e.title, items: e.items }, Math.random())
|
1446
1450
|
) : r.push(
|
1447
|
-
/* @__PURE__ */
|
1451
|
+
/* @__PURE__ */ u.jsx(
|
1448
1452
|
Xe,
|
1449
1453
|
{
|
1450
1454
|
title: e.title,
|
@@ -1455,22 +1459,24 @@ function Ae(t) {
|
|
1455
1459
|
max: e.max,
|
1456
1460
|
step: e.step,
|
1457
1461
|
disabled: e.disabled,
|
1458
|
-
onChange: (i,
|
1459
|
-
e.onChange !== void 0 ? e.onChange(i,
|
1462
|
+
onChange: (i, d) => {
|
1463
|
+
e.onChange !== void 0 ? e.onChange(i, d) : n(i, d);
|
1460
1464
|
}
|
1461
1465
|
},
|
1462
1466
|
Math.random()
|
1463
1467
|
)
|
1464
1468
|
);
|
1465
|
-
}), /* @__PURE__ */
|
1469
|
+
}), /* @__PURE__ */ u.jsx(wt, { label: t.title, open: !1, children: r });
|
1466
1470
|
}
|
1467
|
-
function
|
1471
|
+
function Hn(t) {
|
1468
1472
|
return !(t === "alphaHash" || t === "alphaToCoverage" || t === "attenuationDistance" || t === "colorWrite" || t === "combine" || t === "defaultAttributeValues" || t === "depthFunc" || t === "forceSinglePass" || t === "glslVersion" || t === "linewidth" || t === "normalMapType" || t === "precision" || t === "premultipliedAlpha" || t === "shadowSide" || t === "side" || t === "toneMapped" || t === "uniformsGroups" || t === "uniformsNeedUpdate" || t === "userData" || t === "vertexColors" || t === "version" || t === "wireframeLinecap" || t === "wireframeLinejoin" || t === "wireframeLinewidth" || t.slice(0, 5) === "blend" || t.slice(0, 4) === "clip" || t.slice(0, 7) === "polygon" || t.slice(0, 7) === "stencil" || t.slice(0, 2) === "is");
|
1469
1473
|
}
|
1470
1474
|
function xe(t) {
|
1471
1475
|
switch (t) {
|
1472
1476
|
case "alphaMap":
|
1473
1477
|
return "Alpha Map";
|
1478
|
+
case "anisotropyMap":
|
1479
|
+
return "Anisotropy Map";
|
1474
1480
|
case "anisotropyRotation":
|
1475
1481
|
return "Anisotropy Rotation";
|
1476
1482
|
case "aoMap":
|
@@ -1483,10 +1489,16 @@ function xe(t) {
|
|
1483
1489
|
return "Bump Map";
|
1484
1490
|
case "bumpScale":
|
1485
1491
|
return "Bump Scale";
|
1492
|
+
case "clearcoatMap":
|
1493
|
+
return "Clearcoat Map";
|
1494
|
+
case "clearcoatNormalMap":
|
1495
|
+
return "Clearcoat Normal Map";
|
1486
1496
|
case "clearcoatNormalScale":
|
1487
1497
|
return "Clearcoat Normal Scale";
|
1488
1498
|
case "clearcoatRoughness":
|
1489
1499
|
return "Clearcoat Roughness";
|
1500
|
+
case "clearcoatRoughnessMap":
|
1501
|
+
return "Clearcoat Roughness Map";
|
1490
1502
|
case "color":
|
1491
1503
|
return "Color";
|
1492
1504
|
case "defines":
|
@@ -1505,6 +1517,8 @@ function xe(t) {
|
|
1505
1517
|
return "Dithering";
|
1506
1518
|
case "emissive":
|
1507
1519
|
return "Emissive";
|
1520
|
+
case "emissiveMap":
|
1521
|
+
return "Emissive Map";
|
1508
1522
|
case "emissiveIntensity":
|
1509
1523
|
return "Emissive Intensity";
|
1510
1524
|
case "envMap":
|
@@ -1525,6 +1539,10 @@ function xe(t) {
|
|
1525
1539
|
return "IOR";
|
1526
1540
|
case "iridescenceIOR":
|
1527
1541
|
return "Iridescence IOR";
|
1542
|
+
case "iridescenceMap":
|
1543
|
+
return "Iridescence Map";
|
1544
|
+
case "iridescenceThicknessMap":
|
1545
|
+
return "Iridescence Thickness Map";
|
1528
1546
|
case "iridescenceThicknessRange":
|
1529
1547
|
return "Iridescence Thickness Range";
|
1530
1548
|
case "lights":
|
@@ -1539,6 +1557,8 @@ function xe(t) {
|
|
1539
1557
|
return "Matcap";
|
1540
1558
|
case "metalness":
|
1541
1559
|
return "Metalness";
|
1560
|
+
case "metalnessMap":
|
1561
|
+
return "Metalness Map";
|
1542
1562
|
case "name":
|
1543
1563
|
return "Name";
|
1544
1564
|
case "normalMap":
|
@@ -1553,20 +1573,36 @@ function xe(t) {
|
|
1553
1573
|
return "Refraction Ratio";
|
1554
1574
|
case "roughness":
|
1555
1575
|
return "Roughness";
|
1576
|
+
case "roughnessMap":
|
1577
|
+
return "Roughness Map";
|
1556
1578
|
case "sheenColor":
|
1557
1579
|
return "Sheen Color";
|
1580
|
+
case "sheenColorMap":
|
1581
|
+
return "Sheen Color Map";
|
1558
1582
|
case "sheenRoughness":
|
1559
1583
|
return "Sheen Roughness";
|
1584
|
+
case "sheenRoughnessMap":
|
1585
|
+
return "Sheen Roughness Map";
|
1560
1586
|
case "shininess":
|
1561
1587
|
return "Shininess";
|
1562
1588
|
case "specular":
|
1563
1589
|
return "Specular";
|
1564
1590
|
case "specularColor":
|
1565
1591
|
return "Specular Color";
|
1592
|
+
case "specularColorMap":
|
1593
|
+
return "Specular Color Map";
|
1566
1594
|
case "specularIntensity":
|
1567
1595
|
return "Specular Intensity";
|
1596
|
+
case "specularIntensityMap":
|
1597
|
+
return "Specular Map Intensity";
|
1568
1598
|
case "thickness":
|
1569
1599
|
return "Thickness";
|
1600
|
+
case "thicknessMap":
|
1601
|
+
return "Thickness Map";
|
1602
|
+
case "transmission":
|
1603
|
+
return "Transmission";
|
1604
|
+
case "transmissionMap":
|
1605
|
+
return "Transmission Map";
|
1570
1606
|
case "transparent":
|
1571
1607
|
return "Transparent";
|
1572
1608
|
case "type":
|
@@ -1584,10 +1620,10 @@ function xe(t) {
|
|
1584
1620
|
}
|
1585
1621
|
return t;
|
1586
1622
|
}
|
1587
|
-
function
|
1623
|
+
function Kn(t) {
|
1588
1624
|
return t.toLowerCase().search("intensity") > -1 || t === "anisotropyRotation" || t === "bumpScale" || t === "clearcoatRoughness" || t === "displacementBias" || t === "displacementScale" || t === "metalness" || t === "opacity" || t === "reflectivity" || t === "refractionRatio" || t === "roughness" || t === "sheenRoughness" || t === "thickness";
|
1589
1625
|
}
|
1590
|
-
function
|
1626
|
+
function Xn() {
|
1591
1627
|
const t = document.createElement("input");
|
1592
1628
|
return t.type = "file", new Promise((n, r) => {
|
1593
1629
|
t.addEventListener("change", function() {
|
@@ -1595,62 +1631,62 @@ function Zn() {
|
|
1595
1631
|
r();
|
1596
1632
|
else {
|
1597
1633
|
const e = t.files[0], i = new FileReader();
|
1598
|
-
i.onload = function(
|
1599
|
-
n(
|
1634
|
+
i.onload = function(d) {
|
1635
|
+
n(d.target.result);
|
1600
1636
|
}, i.readAsDataURL(e);
|
1601
1637
|
}
|
1602
1638
|
}), t.click();
|
1603
1639
|
});
|
1604
1640
|
}
|
1605
|
-
function
|
1641
|
+
function At(t, n, r) {
|
1606
1642
|
const e = [];
|
1607
1643
|
for (const i in t) {
|
1608
|
-
if (!
|
1644
|
+
if (!Hn(i))
|
1609
1645
|
continue;
|
1610
|
-
const
|
1611
|
-
if (
|
1646
|
+
const d = typeof t[i], c = t[i];
|
1647
|
+
if (d === "boolean" || d === "number" || d === "string") {
|
1612
1648
|
const s = {
|
1613
1649
|
title: xe(i),
|
1614
1650
|
prop: i,
|
1615
|
-
type:
|
1651
|
+
type: d,
|
1616
1652
|
value: c,
|
1617
1653
|
min: void 0,
|
1618
1654
|
max: void 0,
|
1619
|
-
onChange: (
|
1655
|
+
onChange: (l, h) => {
|
1620
1656
|
var g;
|
1621
|
-
r.updateObject(n.uuid, `material.${
|
1622
|
-
const
|
1623
|
-
|
1657
|
+
r.updateObject(n.uuid, `material.${l}`, h), d === "boolean" && r.updateObject(n.uuid, "material.needsUpdate", !0);
|
1658
|
+
const p = (g = r.scene) == null ? void 0 : g.getObjectByProperty("uuid", n.uuid);
|
1659
|
+
p !== void 0 && Z(p, `material.${l}`, h);
|
1624
1660
|
}
|
1625
1661
|
};
|
1626
|
-
|
1627
|
-
} else if (
|
1662
|
+
Kn(i) && (s.value = Number(c), s.type = "range", s.min = 0, s.max = 1, s.step = 0.01), e.push(s);
|
1663
|
+
} else if (d === "object")
|
1628
1664
|
if (c.isColor)
|
1629
1665
|
e.push({
|
1630
1666
|
title: xe(i),
|
1631
1667
|
prop: i,
|
1632
1668
|
type: "color",
|
1633
1669
|
value: c,
|
1634
|
-
onChange: (s,
|
1670
|
+
onChange: (s, l) => {
|
1635
1671
|
var g;
|
1636
|
-
const h = new
|
1672
|
+
const h = new Ct(l);
|
1637
1673
|
r.updateObject(n.uuid, `material.${s}`, h);
|
1638
|
-
const
|
1639
|
-
|
1674
|
+
const p = (g = r.scene) == null ? void 0 : g.getObjectByProperty("uuid", n.uuid);
|
1675
|
+
p !== void 0 && Z(p, `material.${s}`, h);
|
1640
1676
|
}
|
1641
1677
|
});
|
1642
1678
|
else if (Array.isArray(c)) {
|
1643
1679
|
const s = [];
|
1644
|
-
for (const
|
1680
|
+
for (const l in c)
|
1645
1681
|
s.push({
|
1646
|
-
title: `${
|
1647
|
-
type: `${typeof c[
|
1648
|
-
value: c[
|
1649
|
-
onChange: (h,
|
1682
|
+
title: `${l}`,
|
1683
|
+
type: `${typeof c[l]}`,
|
1684
|
+
value: c[l],
|
1685
|
+
onChange: (h, p) => {
|
1650
1686
|
var E;
|
1651
|
-
r.updateObject(n.uuid, `material.${i}`,
|
1687
|
+
r.updateObject(n.uuid, `material.${i}`, p);
|
1652
1688
|
const g = (E = r.scene) == null ? void 0 : E.getObjectByProperty("uuid", n.uuid);
|
1653
|
-
g !== void 0 && Z(g, `material.${i}`,
|
1689
|
+
g !== void 0 && Z(g, `material.${i}`, p);
|
1654
1690
|
}
|
1655
1691
|
});
|
1656
1692
|
e.push({
|
@@ -1659,59 +1695,59 @@ function Nt(t, n, r) {
|
|
1659
1695
|
});
|
1660
1696
|
} else {
|
1661
1697
|
const s = [];
|
1662
|
-
for (const
|
1663
|
-
const h = c[
|
1698
|
+
for (const l in c) {
|
1699
|
+
const h = c[l];
|
1664
1700
|
switch (typeof h) {
|
1665
1701
|
case "boolean":
|
1666
1702
|
case "number":
|
1667
1703
|
case "string":
|
1668
|
-
|
1704
|
+
l === "src" ? e.push({
|
1669
1705
|
title: xe(i),
|
1670
1706
|
type: "image",
|
1671
1707
|
value: h,
|
1672
1708
|
onChange: (g, E) => {
|
1673
|
-
var
|
1709
|
+
var P;
|
1674
1710
|
r.createTexture(n.uuid, `material.${i}`, E);
|
1675
|
-
const C = (
|
1711
|
+
const C = (P = r.scene) == null ? void 0 : P.getObjectByProperty("uuid", n.uuid);
|
1676
1712
|
C !== void 0 && yt(E).then((D) => {
|
1677
1713
|
Z(C, `material.${i}`, D), Z(C, "material.needsUpdate", !0);
|
1678
1714
|
});
|
1679
1715
|
}
|
1680
1716
|
}) : s.push({
|
1681
|
-
title: `${xe(
|
1682
|
-
prop: `material.${i}.${
|
1683
|
-
type: `${typeof t[i][
|
1684
|
-
value: c[
|
1717
|
+
title: `${xe(l)}`,
|
1718
|
+
prop: `material.${i}.${l}`,
|
1719
|
+
type: `${typeof t[i][l]}`,
|
1720
|
+
value: c[l],
|
1685
1721
|
onChange: (g, E) => {
|
1686
|
-
var
|
1687
|
-
r.updateObject(n.uuid, `material.${i}.${
|
1688
|
-
const C = (
|
1689
|
-
C !== void 0 && Z(C, `material.${i}.${
|
1722
|
+
var P;
|
1723
|
+
r.updateObject(n.uuid, `material.${i}.${l}`, E);
|
1724
|
+
const C = (P = r.scene) == null ? void 0 : P.getObjectByProperty("uuid", n.uuid);
|
1725
|
+
C !== void 0 && Z(C, `material.${i}.${l}`, E);
|
1690
1726
|
}
|
1691
1727
|
});
|
1692
1728
|
break;
|
1693
1729
|
case "object":
|
1694
1730
|
h.value !== void 0 && h.value.src !== void 0 ? s.push({
|
1695
|
-
title: xe(
|
1731
|
+
title: xe(l),
|
1696
1732
|
type: "image",
|
1697
1733
|
value: h.value.src,
|
1698
1734
|
onChange: (g, E) => {
|
1699
|
-
var
|
1700
|
-
r.createTexture(n.uuid, `material.${i}.${
|
1701
|
-
const C = (
|
1735
|
+
var P;
|
1736
|
+
r.createTexture(n.uuid, `material.${i}.${l}.value`, E);
|
1737
|
+
const C = (P = r.scene) == null ? void 0 : P.getObjectByProperty("uuid", n.uuid);
|
1702
1738
|
C !== void 0 && yt(E).then((D) => {
|
1703
|
-
Z(C, `material.${i}.${
|
1739
|
+
Z(C, `material.${i}.${l}.value`, D);
|
1704
1740
|
});
|
1705
1741
|
}
|
1706
1742
|
}) : s.push({
|
1707
|
-
title:
|
1743
|
+
title: l,
|
1708
1744
|
type: `${typeof h.value}`,
|
1709
1745
|
value: h.value,
|
1710
1746
|
onChange: (g, E) => {
|
1711
|
-
var
|
1712
|
-
r.updateObject(n.uuid, `material.${i}.${
|
1713
|
-
const C = (
|
1714
|
-
C !== void 0 && Z(C, `material.${i}.${
|
1747
|
+
var P;
|
1748
|
+
r.updateObject(n.uuid, `material.${i}.${l}.value`, E);
|
1749
|
+
const C = (P = r.scene) == null ? void 0 : P.getObjectByProperty("uuid", n.uuid);
|
1750
|
+
C !== void 0 && Z(C, `material.${i}.${l}.value`, E);
|
1715
1751
|
}
|
1716
1752
|
});
|
1717
1753
|
break;
|
@@ -1723,9 +1759,9 @@ function Nt(t, n, r) {
|
|
1723
1759
|
});
|
1724
1760
|
}
|
1725
1761
|
else
|
1726
|
-
c !== void 0 && console.log("other:", i,
|
1762
|
+
c !== void 0 && console.log("other:", i, d, c);
|
1727
1763
|
}
|
1728
|
-
return e.sort((i,
|
1764
|
+
return e.sort((i, d) => i.title < d.title ? -1 : i.title > d.title ? 1 : 0), e.push({
|
1729
1765
|
title: "Update Material",
|
1730
1766
|
type: "button",
|
1731
1767
|
onChange: () => {
|
@@ -1733,62 +1769,62 @@ function Nt(t, n, r) {
|
|
1733
1769
|
}
|
1734
1770
|
}), e;
|
1735
1771
|
}
|
1736
|
-
function
|
1772
|
+
function qn(t, n) {
|
1737
1773
|
const r = t.material;
|
1738
1774
|
if (Array.isArray(r)) {
|
1739
1775
|
const e = [], i = r.length;
|
1740
|
-
for (let
|
1776
|
+
for (let d = 0; d < i; d++)
|
1741
1777
|
e.push(
|
1742
|
-
/* @__PURE__ */
|
1743
|
-
|
1778
|
+
/* @__PURE__ */ u.jsx(
|
1779
|
+
Ie,
|
1744
1780
|
{
|
1745
|
-
title: `Material ${
|
1746
|
-
items:
|
1781
|
+
title: `Material ${d}`,
|
1782
|
+
items: At(r[d], t, n)
|
1747
1783
|
}
|
1748
1784
|
)
|
1749
1785
|
);
|
1750
|
-
return /* @__PURE__ */
|
1786
|
+
return /* @__PURE__ */ u.jsx(u.Fragment, { children: e });
|
1751
1787
|
} else
|
1752
|
-
return /* @__PURE__ */
|
1753
|
-
|
1788
|
+
return /* @__PURE__ */ u.jsx(
|
1789
|
+
Ie,
|
1754
1790
|
{
|
1755
1791
|
title: "Material",
|
1756
|
-
items:
|
1792
|
+
items: At(r, t, n)
|
1757
1793
|
}
|
1758
1794
|
);
|
1759
1795
|
}
|
1760
1796
|
function Xe(t) {
|
1761
1797
|
let n = t.value;
|
1762
|
-
n !== void 0 && n.isColor !== void 0 && (n =
|
1763
|
-
const [r, e] = re(n), i = Se(null),
|
1798
|
+
n !== void 0 && n.isColor !== void 0 && (n = kn(t.value));
|
1799
|
+
const [r, e] = re(n), i = Se(null), d = Se(null), c = Se(null);
|
1764
1800
|
qe(() => {
|
1765
1801
|
var O;
|
1766
|
-
let
|
1767
|
-
const
|
1768
|
-
|
1769
|
-
}, D = (
|
1770
|
-
if (!
|
1802
|
+
let p = !1, g = -1, E = 0, C = Number(r);
|
1803
|
+
const P = (R) => {
|
1804
|
+
p = !0, E = C, g = R.clientX;
|
1805
|
+
}, D = (R) => {
|
1806
|
+
if (!p)
|
1771
1807
|
return;
|
1772
|
-
const z = t.step !== void 0 ? t.step : 1, ee = (
|
1773
|
-
C = Number((E + ee).toFixed(4)),
|
1808
|
+
const z = t.step !== void 0 ? t.step : 1, ee = (R.clientX - g) * z;
|
1809
|
+
C = Number((E + ee).toFixed(4)), d.current !== null && (d.current.value = C.toString()), t.onChange !== void 0 && t.onChange(t.prop !== void 0 ? t.prop : t.title, C);
|
1774
1810
|
}, y = () => {
|
1775
|
-
|
1811
|
+
p = !1;
|
1776
1812
|
}, b = () => {
|
1777
|
-
|
1813
|
+
p = !1;
|
1778
1814
|
}, v = t.type === "number";
|
1779
|
-
return v && ((O = i.current) == null || O.addEventListener("mousedown",
|
1780
|
-
var
|
1781
|
-
v && ((
|
1815
|
+
return v && ((O = i.current) == null || O.addEventListener("mousedown", P, !1), document.addEventListener("mouseup", y, !1), document.addEventListener("mousemove", D, !1), document.addEventListener("contextmenu", b, !1)), () => {
|
1816
|
+
var R;
|
1817
|
+
v && ((R = i.current) == null || R.removeEventListener("mousedown", P), document.removeEventListener("mouseup", y), document.removeEventListener("mousemove", D), document.removeEventListener("contextmenu", b));
|
1782
1818
|
};
|
1783
1819
|
}, [r]);
|
1784
1820
|
const s = t.type === "string" && (r.length > 100 || r.search(`
|
1785
|
-
`) > -1),
|
1786
|
-
let g =
|
1787
|
-
t.type === "boolean" && (g =
|
1821
|
+
`) > -1), l = s || t.type === "image", h = (p) => {
|
1822
|
+
let g = p.target.value;
|
1823
|
+
t.type === "boolean" && (g = p.target.checked), e(g), t.onChange !== void 0 && t.onChange(t.prop !== void 0 ? t.prop : t.title, g);
|
1788
1824
|
};
|
1789
|
-
return /* @__PURE__ */
|
1790
|
-
t.type !== "button" && /* @__PURE__ */
|
1791
|
-
t.type === "string" && !s && /* @__PURE__ */
|
1825
|
+
return /* @__PURE__ */ u.jsxs("div", { className: `field ${l ? "block" : ""}`, children: [
|
1826
|
+
t.type !== "button" && /* @__PURE__ */ u.jsx("label", { ref: i, children: t.title }, "fieldLabel"),
|
1827
|
+
t.type === "string" && !s && /* @__PURE__ */ u.jsx(
|
1792
1828
|
"input",
|
1793
1829
|
{
|
1794
1830
|
type: "text",
|
@@ -1797,7 +1833,7 @@ function Xe(t) {
|
|
1797
1833
|
value: r
|
1798
1834
|
}
|
1799
1835
|
),
|
1800
|
-
t.type === "string" && s && /* @__PURE__ */
|
1836
|
+
t.type === "string" && s && /* @__PURE__ */ u.jsx(
|
1801
1837
|
"textarea",
|
1802
1838
|
{
|
1803
1839
|
cols: 50,
|
@@ -1807,7 +1843,7 @@ function Xe(t) {
|
|
1807
1843
|
value: r
|
1808
1844
|
}
|
1809
1845
|
),
|
1810
|
-
t.type === "boolean" && /* @__PURE__ */
|
1846
|
+
t.type === "boolean" && /* @__PURE__ */ u.jsx(
|
1811
1847
|
"input",
|
1812
1848
|
{
|
1813
1849
|
type: "checkbox",
|
@@ -1816,10 +1852,10 @@ function Xe(t) {
|
|
1816
1852
|
checked: r
|
1817
1853
|
}
|
1818
1854
|
),
|
1819
|
-
t.type === "number" && /* @__PURE__ */
|
1855
|
+
t.type === "number" && /* @__PURE__ */ u.jsx(
|
1820
1856
|
"input",
|
1821
1857
|
{
|
1822
|
-
ref:
|
1858
|
+
ref: d,
|
1823
1859
|
type: "number",
|
1824
1860
|
value: r,
|
1825
1861
|
min: t.min,
|
@@ -1828,9 +1864,9 @@ function Xe(t) {
|
|
1828
1864
|
onChange: h
|
1829
1865
|
}
|
1830
1866
|
),
|
1831
|
-
t.type === "range" && /* @__PURE__ */
|
1832
|
-
/* @__PURE__ */
|
1833
|
-
/* @__PURE__ */
|
1867
|
+
t.type === "range" && /* @__PURE__ */ u.jsxs(u.Fragment, { children: [
|
1868
|
+
/* @__PURE__ */ u.jsx("input", { type: "text", value: r.toString(), onChange: h, className: "min" }),
|
1869
|
+
/* @__PURE__ */ u.jsx(
|
1834
1870
|
"input",
|
1835
1871
|
{
|
1836
1872
|
disabled: t.disabled,
|
@@ -1843,11 +1879,11 @@ function Xe(t) {
|
|
1843
1879
|
}
|
1844
1880
|
)
|
1845
1881
|
] }),
|
1846
|
-
t.type === "color" && /* @__PURE__ */
|
1847
|
-
/* @__PURE__ */
|
1848
|
-
/* @__PURE__ */
|
1882
|
+
t.type === "color" && /* @__PURE__ */ u.jsxs(u.Fragment, { children: [
|
1883
|
+
/* @__PURE__ */ u.jsx("input", { type: "text", value: r.toString(), onChange: h, className: "color" }),
|
1884
|
+
/* @__PURE__ */ u.jsx("input", { type: "color", value: r, onChange: h })
|
1849
1885
|
] }),
|
1850
|
-
t.type === "button" && /* @__PURE__ */
|
1886
|
+
t.type === "button" && /* @__PURE__ */ u.jsx(
|
1851
1887
|
"button",
|
1852
1888
|
{
|
1853
1889
|
onClick: () => {
|
@@ -1856,14 +1892,14 @@ function Xe(t) {
|
|
1856
1892
|
children: t.title
|
1857
1893
|
}
|
1858
1894
|
),
|
1859
|
-
t.type === "image" && /* @__PURE__ */
|
1860
|
-
|
1861
|
-
c.current.src =
|
1895
|
+
t.type === "image" && /* @__PURE__ */ u.jsx("img", { ref: c, onClick: () => {
|
1896
|
+
Xn().then((p) => {
|
1897
|
+
c.current.src = p, t.onChange !== void 0 && t.onChange(t.prop !== void 0 ? t.prop : t.title, p);
|
1862
1898
|
});
|
1863
|
-
}, src: r.length > 0 ? r :
|
1899
|
+
}, src: r.length > 0 ? r : zn })
|
1864
1900
|
] });
|
1865
1901
|
}
|
1866
|
-
function
|
1902
|
+
function Nt(t) {
|
1867
1903
|
switch (t) {
|
1868
1904
|
case "fov":
|
1869
1905
|
return "FOV";
|
@@ -1892,56 +1928,56 @@ function Lt(t) {
|
|
1892
1928
|
}
|
1893
1929
|
return t;
|
1894
1930
|
}
|
1895
|
-
function
|
1931
|
+
function Zn(t, n) {
|
1896
1932
|
const r = [];
|
1897
1933
|
if (t.perspectiveCameraInfo !== void 0)
|
1898
1934
|
for (const e in t.perspectiveCameraInfo)
|
1899
1935
|
r.push({
|
1900
|
-
title:
|
1936
|
+
title: Nt(e),
|
1901
1937
|
prop: e,
|
1902
1938
|
type: "number",
|
1903
1939
|
step: 0.01,
|
1904
1940
|
value: t.perspectiveCameraInfo[e],
|
1905
|
-
onChange: (i,
|
1941
|
+
onChange: (i, d) => {
|
1906
1942
|
var s;
|
1907
|
-
n.updateObject(t.uuid, i,
|
1943
|
+
n.updateObject(t.uuid, i, d), n.requestMethod(t.uuid, "updateProjectionMatrix");
|
1908
1944
|
const c = (s = n.scene) == null ? void 0 : s.getObjectByProperty("uuid", t.uuid);
|
1909
|
-
c !== void 0 && (Z(c, i,
|
1945
|
+
c !== void 0 && (Z(c, i, d), c.updateProjectionMatrix());
|
1910
1946
|
}
|
1911
1947
|
});
|
1912
1948
|
else if (t.orthographicCameraInfo !== void 0)
|
1913
1949
|
for (const e in t.orthographicCameraInfo)
|
1914
1950
|
r.push({
|
1915
|
-
title:
|
1951
|
+
title: Nt(e),
|
1916
1952
|
prop: e,
|
1917
1953
|
type: "number",
|
1918
1954
|
step: 0.01,
|
1919
1955
|
value: t.perspectiveCameraInfo[e],
|
1920
|
-
onChange: (i,
|
1956
|
+
onChange: (i, d) => {
|
1921
1957
|
var s;
|
1922
|
-
n.updateObject(t.uuid, i,
|
1958
|
+
n.updateObject(t.uuid, i, d), n.requestMethod(t.uuid, "updateProjectionMatrix");
|
1923
1959
|
const c = (s = n.scene) == null ? void 0 : s.getObjectByProperty("uuid", t.uuid);
|
1924
|
-
c !== void 0 && (Z(c, i,
|
1960
|
+
c !== void 0 && (Z(c, i, d), c.updateProjectionMatrix());
|
1925
1961
|
}
|
1926
1962
|
});
|
1927
|
-
return /* @__PURE__ */
|
1928
|
-
|
1963
|
+
return /* @__PURE__ */ u.jsx(
|
1964
|
+
Ie,
|
1929
1965
|
{
|
1930
1966
|
title: "Camera",
|
1931
1967
|
items: r
|
1932
1968
|
}
|
1933
1969
|
);
|
1934
1970
|
}
|
1935
|
-
function
|
1936
|
-
const r = new
|
1971
|
+
function Jn(t, n) {
|
1972
|
+
const r = new ln();
|
1937
1973
|
r.elements = t.matrix;
|
1938
|
-
const e = new G(), i = new
|
1939
|
-
t.uuid.length > 0 && (e.setFromMatrixPosition(r), i.setFromRotationMatrix(r),
|
1940
|
-
const c = (
|
1974
|
+
const e = new G(), i = new un(), d = new G();
|
1975
|
+
t.uuid.length > 0 && (e.setFromMatrixPosition(r), i.setFromRotationMatrix(r), d.setFromMatrixScale(r));
|
1976
|
+
const c = (l, h) => {
|
1941
1977
|
var g;
|
1942
|
-
n.updateObject(t.uuid,
|
1943
|
-
const
|
1944
|
-
|
1978
|
+
n.updateObject(t.uuid, l, h);
|
1979
|
+
const p = (g = n.scene) == null ? void 0 : g.getObjectByProperty("uuid", t.uuid);
|
1980
|
+
p !== void 0 && Z(p, l, h);
|
1945
1981
|
}, s = [
|
1946
1982
|
{
|
1947
1983
|
title: "Position",
|
@@ -2011,7 +2047,7 @@ function ea(t, n) {
|
|
2011
2047
|
title: "X",
|
2012
2048
|
prop: "scale.x",
|
2013
2049
|
type: "number",
|
2014
|
-
value:
|
2050
|
+
value: d.x,
|
2015
2051
|
step: 0.01,
|
2016
2052
|
onChange: c
|
2017
2053
|
},
|
@@ -2019,7 +2055,7 @@ function ea(t, n) {
|
|
2019
2055
|
title: "Y",
|
2020
2056
|
prop: "scale.y",
|
2021
2057
|
type: "number",
|
2022
|
-
value:
|
2058
|
+
value: d.y,
|
2023
2059
|
step: 0.01,
|
2024
2060
|
onChange: c
|
2025
2061
|
},
|
@@ -2027,22 +2063,22 @@ function ea(t, n) {
|
|
2027
2063
|
title: "Z",
|
2028
2064
|
prop: "scale.z",
|
2029
2065
|
type: "number",
|
2030
|
-
value:
|
2066
|
+
value: d.z,
|
2031
2067
|
step: 0.01,
|
2032
2068
|
onChange: c
|
2033
2069
|
}
|
2034
2070
|
]
|
2035
2071
|
}
|
2036
2072
|
];
|
2037
|
-
return /* @__PURE__ */
|
2038
|
-
|
2073
|
+
return /* @__PURE__ */ u.jsx(
|
2074
|
+
Ie,
|
2039
2075
|
{
|
2040
2076
|
title: "Transform",
|
2041
2077
|
items: s
|
2042
2078
|
}
|
2043
2079
|
);
|
2044
2080
|
}
|
2045
|
-
function
|
2081
|
+
function Lt(t) {
|
2046
2082
|
switch (t) {
|
2047
2083
|
case "color":
|
2048
2084
|
return "Color";
|
@@ -2061,111 +2097,124 @@ function Ft(t) {
|
|
2061
2097
|
}
|
2062
2098
|
return t;
|
2063
2099
|
}
|
2064
|
-
function
|
2100
|
+
function Qn(t, n) {
|
2065
2101
|
const r = [];
|
2066
2102
|
if (t.lightInfo !== void 0)
|
2067
2103
|
for (const e in t.lightInfo) {
|
2068
2104
|
const i = t.lightInfo[e];
|
2069
2105
|
i !== void 0 && (i.isColor !== void 0 ? r.push({
|
2070
|
-
title:
|
2106
|
+
title: Lt(e),
|
2071
2107
|
prop: e,
|
2072
2108
|
type: "color",
|
2073
2109
|
value: i,
|
2074
|
-
onChange: (
|
2110
|
+
onChange: (d, c) => {
|
2075
2111
|
var h;
|
2076
|
-
const s = new
|
2077
|
-
n.updateObject(t.uuid,
|
2078
|
-
const
|
2079
|
-
|
2112
|
+
const s = new Ct(c);
|
2113
|
+
n.updateObject(t.uuid, d, s);
|
2114
|
+
const l = (h = n.scene) == null ? void 0 : h.getObjectByProperty("uuid", t.uuid);
|
2115
|
+
l !== void 0 && Z(l, d, s);
|
2080
2116
|
}
|
2081
2117
|
}) : r.push({
|
2082
|
-
title:
|
2118
|
+
title: Lt(e),
|
2083
2119
|
prop: e,
|
2084
2120
|
type: typeof i,
|
2085
2121
|
value: i,
|
2086
2122
|
step: typeof i == "number" ? 0.01 : void 0,
|
2087
|
-
onChange: (
|
2088
|
-
var
|
2089
|
-
n.updateObject(t.uuid,
|
2090
|
-
const s = (
|
2091
|
-
s !== void 0 && Z(s,
|
2123
|
+
onChange: (d, c) => {
|
2124
|
+
var l;
|
2125
|
+
n.updateObject(t.uuid, d, c);
|
2126
|
+
const s = (l = n.scene) == null ? void 0 : l.getObjectByProperty("uuid", t.uuid);
|
2127
|
+
s !== void 0 && Z(s, d, c);
|
2092
2128
|
}
|
2093
2129
|
}));
|
2094
2130
|
}
|
2095
|
-
return /* @__PURE__ */
|
2096
|
-
|
2131
|
+
return /* @__PURE__ */ u.jsx(
|
2132
|
+
Ie,
|
2097
2133
|
{
|
2098
2134
|
title: "Light",
|
2099
2135
|
items: r
|
2100
2136
|
}
|
2101
2137
|
);
|
2102
2138
|
}
|
2103
|
-
function
|
2139
|
+
function ea(t) {
|
2104
2140
|
const [n, r] = re(-1), [e, i] = re({
|
2105
2141
|
name: "",
|
2106
2142
|
uuid: "",
|
2107
2143
|
type: "",
|
2108
2144
|
visible: !1,
|
2109
|
-
matrix: [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]
|
2145
|
+
matrix: [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1],
|
2146
|
+
material: void 0,
|
2147
|
+
perspectiveCameraInfo: void 0,
|
2148
|
+
orthographicCameraInfo: void 0,
|
2149
|
+
lightInfo: void 0
|
2110
2150
|
});
|
2111
|
-
|
2112
|
-
function
|
2113
|
-
const
|
2114
|
-
i(
|
2151
|
+
qe(() => {
|
2152
|
+
function c(s) {
|
2153
|
+
const l = s.value;
|
2154
|
+
i(l), r(Date.now());
|
2115
2155
|
}
|
2116
|
-
return
|
2117
|
-
|
2156
|
+
return A.addEventListener(N.SET_OBJECT, c), () => {
|
2157
|
+
A.removeEventListener(N.SET_OBJECT, c);
|
2118
2158
|
};
|
2119
|
-
}, [])
|
2120
|
-
|
2121
|
-
|
2122
|
-
|
2123
|
-
|
2124
|
-
|
2125
|
-
|
2126
|
-
|
2127
|
-
|
2128
|
-
|
2129
|
-
|
2130
|
-
|
2131
|
-
Xe,
|
2132
|
-
{
|
2133
|
-
type: "string",
|
2134
|
-
title: "Type",
|
2135
|
-
prop: "type",
|
2136
|
-
value: e.type,
|
2137
|
-
disabled: !0
|
2138
|
-
}
|
2139
|
-
),
|
2140
|
-
/* @__PURE__ */ d.jsx(
|
2141
|
-
Xe,
|
2142
|
-
{
|
2143
|
-
type: "string",
|
2144
|
-
title: "UUID",
|
2145
|
-
prop: "uuid",
|
2146
|
-
value: e.uuid,
|
2147
|
-
disabled: !0
|
2148
|
-
}
|
2149
|
-
),
|
2150
|
-
/* @__PURE__ */ d.jsx(
|
2151
|
-
Xe,
|
2152
|
-
{
|
2153
|
-
type: "boolean",
|
2154
|
-
title: "Visible",
|
2155
|
-
prop: "visible",
|
2156
|
-
value: e.visible,
|
2157
|
-
onChange: (l, c) => {
|
2158
|
-
t.three.updateObject(e.uuid, l, c);
|
2159
|
+
}, []);
|
2160
|
+
const d = e.type.toLowerCase();
|
2161
|
+
return /* @__PURE__ */ u.jsx("div", { id: "Inspector", className: t.class, children: e.uuid.length > 0 && /* @__PURE__ */ u.jsxs(u.Fragment, { children: [
|
2162
|
+
/* @__PURE__ */ u.jsxs(u.Fragment, { children: [
|
2163
|
+
/* @__PURE__ */ u.jsx(
|
2164
|
+
Xe,
|
2165
|
+
{
|
2166
|
+
type: "string",
|
2167
|
+
title: "Name",
|
2168
|
+
prop: "name",
|
2169
|
+
value: e.name,
|
2170
|
+
disabled: !0
|
2159
2171
|
}
|
2160
|
-
|
2161
|
-
|
2162
|
-
|
2163
|
-
|
2164
|
-
|
2165
|
-
|
2172
|
+
),
|
2173
|
+
/* @__PURE__ */ u.jsx(
|
2174
|
+
Xe,
|
2175
|
+
{
|
2176
|
+
type: "string",
|
2177
|
+
title: "Type",
|
2178
|
+
prop: "type",
|
2179
|
+
value: e.type,
|
2180
|
+
disabled: !0
|
2181
|
+
}
|
2182
|
+
),
|
2183
|
+
/* @__PURE__ */ u.jsx(
|
2184
|
+
Xe,
|
2185
|
+
{
|
2186
|
+
type: "string",
|
2187
|
+
title: "UUID",
|
2188
|
+
prop: "uuid",
|
2189
|
+
value: e.uuid,
|
2190
|
+
disabled: !0
|
2191
|
+
}
|
2192
|
+
),
|
2193
|
+
/* @__PURE__ */ u.jsx(
|
2194
|
+
Xe,
|
2195
|
+
{
|
2196
|
+
type: "boolean",
|
2197
|
+
title: "Visible",
|
2198
|
+
prop: "visible",
|
2199
|
+
value: e.visible,
|
2200
|
+
onChange: (c, s) => {
|
2201
|
+
var h;
|
2202
|
+
t.three.updateObject(e.uuid, c, s);
|
2203
|
+
const l = (h = t.three.scene) == null ? void 0 : h.getObjectByProperty("uuid", e.uuid);
|
2204
|
+
l !== void 0 && Z(l, c, s);
|
2205
|
+
}
|
2206
|
+
}
|
2207
|
+
)
|
2208
|
+
] }),
|
2209
|
+
/* @__PURE__ */ u.jsxs(u.Fragment, { children: [
|
2210
|
+
Jn(e, t.three),
|
2211
|
+
d.search("camera") > -1 ? Zn(e, t.three) : null,
|
2212
|
+
d.search("light") > -1 ? Qn(e, t.three) : null,
|
2213
|
+
d.search("mesh") > -1 ? qn(e, t.three) : null
|
2214
|
+
] })
|
2166
2215
|
] }) }, n);
|
2167
2216
|
}
|
2168
|
-
class
|
2217
|
+
class Oa extends Mn {
|
2169
2218
|
constructor(r) {
|
2170
2219
|
super(r);
|
2171
2220
|
$(this, "three");
|
@@ -2180,28 +2229,28 @@ class Pa extends jn {
|
|
2180
2229
|
});
|
2181
2230
|
this.state = {
|
2182
2231
|
scene: r.scene !== void 0 ? r.scene : null
|
2183
|
-
}, this.three = r.three,
|
2232
|
+
}, this.three = r.three, A.addEventListener(N.SET_SCENE, this.setScene);
|
2184
2233
|
}
|
2185
2234
|
componentDidMount() {
|
2186
2235
|
this.onRefresh();
|
2187
2236
|
}
|
2188
2237
|
componentWillUnmount() {
|
2189
|
-
|
2238
|
+
A.removeEventListener(N.SET_SCENE, this.setScene);
|
2190
2239
|
}
|
2191
2240
|
render() {
|
2192
2241
|
var i;
|
2193
2242
|
const r = this.componentState.scene !== null, e = "Hierarchy" + (r ? `: ${(i = this.componentState.scene) == null ? void 0 : i.name}` : "");
|
2194
|
-
return /* @__PURE__ */
|
2195
|
-
r && /* @__PURE__ */
|
2243
|
+
return /* @__PURE__ */ u.jsx("div", { id: "SceneHierarchy", children: /* @__PURE__ */ u.jsxs(u.Fragment, { children: [
|
2244
|
+
r && /* @__PURE__ */ u.jsx(
|
2196
2245
|
wt,
|
2197
2246
|
{
|
2198
2247
|
label: e,
|
2199
|
-
button: /* @__PURE__ */
|
2248
|
+
button: /* @__PURE__ */ u.jsx("button", { className: "icon refresh hideText", onClick: this.onRefresh, children: "Refresh" }),
|
2200
2249
|
open: !0,
|
2201
|
-
children: /* @__PURE__ */
|
2250
|
+
children: /* @__PURE__ */ u.jsx(Vn, { child: this.componentState.scene, three: this.three })
|
2202
2251
|
}
|
2203
2252
|
),
|
2204
|
-
/* @__PURE__ */
|
2253
|
+
/* @__PURE__ */ u.jsx(wt, { label: "Inspector", children: /* @__PURE__ */ u.jsx(ea, { three: this.three }, "Inspector") })
|
2205
2254
|
] }) }, "SceneHierarchy");
|
2206
2255
|
}
|
2207
2256
|
// Getters / Setters
|
@@ -2209,38 +2258,38 @@ class Pa extends jn {
|
|
2209
2258
|
return this.state;
|
2210
2259
|
}
|
2211
2260
|
}
|
2212
|
-
function
|
2261
|
+
function Ta(t) {
|
2213
2262
|
const n = (s) => {
|
2214
|
-
const
|
2215
|
-
|
2216
|
-
}, r = (s,
|
2217
|
-
const
|
2218
|
-
|
2263
|
+
const l = t.scene.getObjectByProperty("uuid", s.value);
|
2264
|
+
l !== void 0 && t.three.setObject(l);
|
2265
|
+
}, r = (s, l, h) => {
|
2266
|
+
const p = t.scene.getObjectByProperty("uuid", s);
|
2267
|
+
p !== void 0 && Z(p, l, h);
|
2219
2268
|
}, e = (s) => {
|
2220
|
-
const
|
2221
|
-
r(g, h,
|
2269
|
+
const l = s.value, { key: h, value: p, uuid: g } = l;
|
2270
|
+
r(g, h, p);
|
2222
2271
|
}, i = (s) => {
|
2223
|
-
const
|
2224
|
-
yt(
|
2225
|
-
r(
|
2272
|
+
const l = s.value;
|
2273
|
+
yt(l.value).then((h) => {
|
2274
|
+
r(l.uuid, l.key, h), r(l.uuid, "material.needsUpdate", !0);
|
2226
2275
|
});
|
2227
|
-
},
|
2276
|
+
}, d = () => {
|
2228
2277
|
t.three.setScene(t.scene);
|
2229
2278
|
}, c = (s) => {
|
2230
|
-
const { key:
|
2279
|
+
const { key: l, uuid: h, value: p } = s.value, g = t.scene.getObjectByProperty("uuid", h);
|
2231
2280
|
if (g !== void 0)
|
2232
2281
|
try {
|
2233
|
-
g[
|
2282
|
+
g[l](p);
|
2234
2283
|
} catch (E) {
|
2235
|
-
console.log("Error requesting method:"), console.log(E), console.log(
|
2284
|
+
console.log("Error requesting method:"), console.log(E), console.log(l), console.log(p);
|
2236
2285
|
}
|
2237
2286
|
};
|
2238
|
-
return qe(() => (
|
2239
|
-
|
2287
|
+
return qe(() => (A.addEventListener(N.GET_OBJECT, n), A.addEventListener(N.GET_SCENE, d), A.addEventListener(N.UPDATE_OBJECT, e), A.addEventListener(N.CREATE_TEXTURE, i), A.addEventListener(N.REQUEST_METHOD, c), () => {
|
2288
|
+
A.removeEventListener(N.GET_OBJECT, n), A.removeEventListener(N.GET_SCENE, d), A.removeEventListener(N.UPDATE_OBJECT, e), A.removeEventListener(N.CREATE_TEXTURE, i), A.removeEventListener(N.REQUEST_METHOD, c);
|
2240
2289
|
}), []), null;
|
2241
2290
|
}
|
2242
|
-
const
|
2243
|
-
class
|
2291
|
+
const Ft = { type: "change" }, gt = { type: "start" }, Ut = { type: "end" }, ct = new dn(), Bt = new fn(), ta = Math.cos(70 * hn.DEG2RAD);
|
2292
|
+
class na extends Gt {
|
2244
2293
|
constructor(n, r) {
|
2245
2294
|
super(), this.object = n, this.domElement = r, this.domElement.style.touchAction = "none", this.enabled = !0, this.target = new G(), this.minDistance = 0, this.maxDistance = 1 / 0, this.minZoom = 0, this.maxZoom = 1 / 0, this.minPolarAngle = 0, this.maxPolarAngle = Math.PI, this.minAzimuthAngle = -1 / 0, this.maxAzimuthAngle = 1 / 0, this.enableDamping = !1, this.dampingFactor = 0.05, this.enableZoom = !0, this.zoomSpeed = 1, this.enableRotate = !0, this.rotateSpeed = 1, this.enablePan = !0, this.panSpeed = 1, this.screenSpacePanning = !0, this.keyPanSpeed = 7, this.zoomToCursor = !1, this.autoRotate = !1, this.autoRotateSpeed = 2, this.keys = { LEFT: "ArrowLeft", UP: "ArrowUp", RIGHT: "ArrowRight", BOTTOM: "ArrowDown" }, this.mouseButtons = { LEFT: De.ROTATE, MIDDLE: De.DOLLY, RIGHT: De.PAN }, this.touches = { ONE: _e.ROTATE, TWO: _e.DOLLY_PAN }, this.target0 = this.target.clone(), this.position0 = this.object.position.clone(), this.zoom0 = this.object.zoom, this._domElementKeyEvents = null, this.getPolarAngle = function() {
|
2246
2295
|
return s.phi;
|
@@ -2255,33 +2304,33 @@ class ra extends Yt {
|
|
2255
2304
|
}, this.saveState = function() {
|
2256
2305
|
e.target0.copy(e.target), e.position0.copy(e.object.position), e.zoom0 = e.object.zoom;
|
2257
2306
|
}, this.reset = function() {
|
2258
|
-
e.target.copy(e.target0), e.object.position.copy(e.position0), e.object.zoom = e.zoom0, e.object.updateProjectionMatrix(), e.dispatchEvent(
|
2307
|
+
e.target.copy(e.target0), e.object.position.copy(e.position0), e.object.zoom = e.zoom0, e.object.updateProjectionMatrix(), e.dispatchEvent(Ft), e.update(), d = i.NONE;
|
2259
2308
|
}, this.update = function() {
|
2260
|
-
const o = new G(), w = new
|
2309
|
+
const o = new G(), w = new Rt().setFromUnitVectors(n.up, new G(0, 1, 0)), F = w.clone().invert(), U = new G(), K = new Rt(), fe = new G(), ie = 2 * Math.PI;
|
2261
2310
|
return function() {
|
2262
2311
|
const ze = e.object.position;
|
2263
|
-
o.copy(ze).sub(e.target), o.applyQuaternion(w), s.setFromVector3(o), e.autoRotate &&
|
2312
|
+
o.copy(ze).sub(e.target), o.applyQuaternion(w), s.setFromVector3(o), e.autoRotate && d === i.NONE && j(Te()), e.enableDamping ? (s.theta += l.theta * e.dampingFactor, s.phi += l.phi * e.dampingFactor) : (s.theta += l.theta, s.phi += l.phi);
|
2264
2313
|
let W = e.minAzimuthAngle, Q = e.maxAzimuthAngle;
|
2265
|
-
isFinite(W) && isFinite(Q) && (W < -Math.PI ? W += ie : W > Math.PI && (W -= ie), Q < -Math.PI ? Q += ie : Q > Math.PI && (Q -= ie), W <= Q ? s.theta = Math.max(W, Math.min(Q, s.theta)) : s.theta = s.theta > (W + Q) / 2 ? Math.max(W, s.theta) : Math.min(Q, s.theta)), s.phi = Math.max(e.minPolarAngle, Math.min(e.maxPolarAngle, s.phi)), s.makeSafe(), e.enableDamping === !0 ? e.target.addScaledVector(
|
2314
|
+
isFinite(W) && isFinite(Q) && (W < -Math.PI ? W += ie : W > Math.PI && (W -= ie), Q < -Math.PI ? Q += ie : Q > Math.PI && (Q -= ie), W <= Q ? s.theta = Math.max(W, Math.min(Q, s.theta)) : s.theta = s.theta > (W + Q) / 2 ? Math.max(W, s.theta) : Math.min(Q, s.theta)), s.phi = Math.max(e.minPolarAngle, Math.min(e.maxPolarAngle, s.phi)), s.makeSafe(), e.enableDamping === !0 ? e.target.addScaledVector(p, e.dampingFactor) : e.target.add(p), e.zoomToCursor && ee || e.object.isOrthographicCamera ? s.radius = Pe(s.radius) : s.radius = Pe(s.radius * h), o.setFromSpherical(s), o.applyQuaternion(F), ze.copy(e.target).add(o), e.object.lookAt(e.target), e.enableDamping === !0 ? (l.theta *= 1 - e.dampingFactor, l.phi *= 1 - e.dampingFactor, p.multiplyScalar(1 - e.dampingFactor)) : (l.set(0, 0, 0), p.set(0, 0, 0));
|
2266
2315
|
let he = !1;
|
2267
2316
|
if (e.zoomToCursor && ee) {
|
2268
|
-
let
|
2317
|
+
let pe = null;
|
2269
2318
|
if (e.object.isPerspectiveCamera) {
|
2270
2319
|
const Ee = o.length();
|
2271
|
-
|
2272
|
-
const we = Ee -
|
2273
|
-
e.object.position.addScaledVector(
|
2320
|
+
pe = Pe(Ee * h);
|
2321
|
+
const we = Ee - pe;
|
2322
|
+
e.object.position.addScaledVector(R, we), e.object.updateMatrixWorld();
|
2274
2323
|
} else if (e.object.isOrthographicCamera) {
|
2275
2324
|
const Ee = new G(z.x, z.y, 0);
|
2276
2325
|
Ee.unproject(e.object), e.object.zoom = Math.max(e.minZoom, Math.min(e.maxZoom, e.object.zoom / h)), e.object.updateProjectionMatrix(), he = !0;
|
2277
2326
|
const we = new G(z.x, z.y, 0);
|
2278
|
-
we.unproject(e.object), e.object.position.sub(we).add(Ee), e.object.updateMatrixWorld(),
|
2327
|
+
we.unproject(e.object), e.object.position.sub(we).add(Ee), e.object.updateMatrixWorld(), pe = o.length();
|
2279
2328
|
} else
|
2280
2329
|
console.warn("WARNING: OrbitControls.js encountered an unknown camera type - zoom to cursor disabled."), e.zoomToCursor = !1;
|
2281
|
-
|
2330
|
+
pe !== null && (this.screenSpacePanning ? e.target.set(0, 0, -1).transformDirection(e.object.matrix).multiplyScalar(pe).add(e.object.position) : (ct.origin.copy(e.object.position), ct.direction.set(0, 0, -1).transformDirection(e.object.matrix), Math.abs(e.object.up.dot(ct.direction)) < ta ? n.lookAt(e.target) : (Bt.setFromNormalAndCoplanarPoint(e.object.up, e.target), ct.intersectPlane(Bt, e.target))));
|
2282
2331
|
} else
|
2283
2332
|
e.object.isOrthographicCamera && (e.object.zoom = Math.max(e.minZoom, Math.min(e.maxZoom, e.object.zoom / h)), e.object.updateProjectionMatrix(), he = !0);
|
2284
|
-
return h = 1, ee = !1, he || U.distanceToSquared(e.object.position) > c || 8 * (1 - K.dot(e.object.quaternion)) > c || fe.distanceToSquared(e.target) > 0 ? (e.dispatchEvent(
|
2333
|
+
return h = 1, ee = !1, he || U.distanceToSquared(e.object.position) > c || 8 * (1 - K.dot(e.object.quaternion)) > c || fe.distanceToSquared(e.target) > 0 ? (e.dispatchEvent(Ft), U.copy(e.object.position), K.copy(e.object.quaternion), fe.copy(e.target), he = !1, !0) : !1;
|
2285
2334
|
};
|
2286
2335
|
}(), this.dispose = function() {
|
2287
2336
|
e.domElement.removeEventListener("contextmenu", de), e.domElement.removeEventListener("pointerdown", $e), e.domElement.removeEventListener("pointercancel", be), e.domElement.removeEventListener("wheel", at), e.domElement.removeEventListener("pointermove", ue), e.domElement.removeEventListener("pointerup", be), e._domElementKeyEvents !== null && (e._domElementKeyEvents.removeEventListener("keydown", Ye), e._domElementKeyEvents = null);
|
@@ -2296,10 +2345,10 @@ class ra extends Yt {
|
|
2296
2345
|
TOUCH_DOLLY_PAN: 5,
|
2297
2346
|
TOUCH_DOLLY_ROTATE: 6
|
2298
2347
|
};
|
2299
|
-
let
|
2300
|
-
const c = 1e-6, s = new
|
2348
|
+
let d = i.NONE;
|
2349
|
+
const c = 1e-6, s = new jt(), l = new jt();
|
2301
2350
|
let h = 1;
|
2302
|
-
const
|
2351
|
+
const p = new G(), g = new ae(), E = new ae(), C = new ae(), P = new ae(), D = new ae(), y = new ae(), b = new ae(), v = new ae(), O = new ae(), R = new G(), z = new ae();
|
2303
2352
|
let ee = !1;
|
2304
2353
|
const T = [], le = {};
|
2305
2354
|
function Te() {
|
@@ -2308,21 +2357,21 @@ class ra extends Yt {
|
|
2308
2357
|
function oe() {
|
2309
2358
|
return Math.pow(0.95, e.zoomSpeed);
|
2310
2359
|
}
|
2311
|
-
function
|
2312
|
-
|
2360
|
+
function j(o) {
|
2361
|
+
l.theta -= o;
|
2313
2362
|
}
|
2314
|
-
function
|
2315
|
-
|
2363
|
+
function I(o) {
|
2364
|
+
l.phi -= o;
|
2316
2365
|
}
|
2317
2366
|
const L = function() {
|
2318
2367
|
const o = new G();
|
2319
2368
|
return function(F, U) {
|
2320
|
-
o.setFromMatrixColumn(U, 0), o.multiplyScalar(-F),
|
2369
|
+
o.setFromMatrixColumn(U, 0), o.multiplyScalar(-F), p.add(o);
|
2321
2370
|
};
|
2322
2371
|
}(), J = function() {
|
2323
2372
|
const o = new G();
|
2324
2373
|
return function(F, U) {
|
2325
|
-
e.screenSpacePanning === !0 ? o.setFromMatrixColumn(U, 1) : (o.setFromMatrixColumn(U, 0), o.crossVectors(e.object.up, o)), o.multiplyScalar(F),
|
2374
|
+
e.screenSpacePanning === !0 ? o.setFromMatrixColumn(U, 1) : (o.setFromMatrixColumn(U, 0), o.crossVectors(e.object.up, o)), o.multiplyScalar(F), p.add(o);
|
2326
2375
|
};
|
2327
2376
|
}(), te = function() {
|
2328
2377
|
const o = new G();
|
@@ -2337,10 +2386,10 @@ class ra extends Yt {
|
|
2337
2386
|
e.object.isOrthographicCamera ? (L(F * (e.object.right - e.object.left) / e.object.zoom / K.clientWidth, e.object.matrix), J(U * (e.object.top - e.object.bottom) / e.object.zoom / K.clientHeight, e.object.matrix)) : (console.warn("WARNING: OrbitControls.js encountered an unknown camera type - pan disabled."), e.enablePan = !1);
|
2338
2387
|
};
|
2339
2388
|
}();
|
2340
|
-
function
|
2389
|
+
function Me(o) {
|
2341
2390
|
e.object.isPerspectiveCamera || e.object.isOrthographicCamera ? h /= o : (console.warn("WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled."), e.enableZoom = !1);
|
2342
2391
|
}
|
2343
|
-
function
|
2392
|
+
function Ae(o) {
|
2344
2393
|
e.object.isPerspectiveCamera || e.object.isOrthographicCamera ? h *= o : (console.warn("WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled."), e.enableZoom = !1);
|
2345
2394
|
}
|
2346
2395
|
function Ne(o) {
|
@@ -2348,9 +2397,9 @@ class ra extends Yt {
|
|
2348
2397
|
return;
|
2349
2398
|
ee = !0;
|
2350
2399
|
const w = e.domElement.getBoundingClientRect(), F = o.clientX - w.left, U = o.clientY - w.top, K = w.width, fe = w.height;
|
2351
|
-
z.x = F / K * 2 - 1, z.y = -(U / fe) * 2 + 1,
|
2400
|
+
z.x = F / K * 2 - 1, z.y = -(U / fe) * 2 + 1, R.set(z.x, z.y, 1).unproject(n).sub(n.position).normalize();
|
2352
2401
|
}
|
2353
|
-
function
|
2402
|
+
function Pe(o) {
|
2354
2403
|
return Math.max(e.minDistance, Math.min(e.maxDistance, o));
|
2355
2404
|
}
|
2356
2405
|
function Le(o) {
|
@@ -2360,41 +2409,41 @@ class ra extends Yt {
|
|
2360
2409
|
Ne(o), b.set(o.clientX, o.clientY);
|
2361
2410
|
}
|
2362
2411
|
function Fe(o) {
|
2363
|
-
|
2412
|
+
P.set(o.clientX, o.clientY);
|
2364
2413
|
}
|
2365
2414
|
function Je(o) {
|
2366
2415
|
E.set(o.clientX, o.clientY), C.subVectors(E, g).multiplyScalar(e.rotateSpeed);
|
2367
2416
|
const w = e.domElement;
|
2368
|
-
|
2417
|
+
j(2 * Math.PI * C.x / w.clientHeight), I(2 * Math.PI * C.y / w.clientHeight), g.copy(E), e.update();
|
2369
2418
|
}
|
2370
|
-
function
|
2371
|
-
v.set(o.clientX, o.clientY), O.subVectors(v, b), O.y > 0 ?
|
2419
|
+
function dt(o) {
|
2420
|
+
v.set(o.clientX, o.clientY), O.subVectors(v, b), O.y > 0 ? Me(oe()) : O.y < 0 && Ae(oe()), b.copy(v), e.update();
|
2372
2421
|
}
|
2373
|
-
function
|
2374
|
-
D.set(o.clientX, o.clientY), y.subVectors(D,
|
2422
|
+
function ft(o) {
|
2423
|
+
D.set(o.clientX, o.clientY), y.subVectors(D, P).multiplyScalar(e.panSpeed), te(y.x, y.y), P.copy(D), e.update();
|
2375
2424
|
}
|
2376
2425
|
function Ue(o) {
|
2377
|
-
Ne(o), o.deltaY < 0 ?
|
2426
|
+
Ne(o), o.deltaY < 0 ? Ae(oe()) : o.deltaY > 0 && Me(oe()), e.update();
|
2378
2427
|
}
|
2379
2428
|
function Be(o) {
|
2380
2429
|
let w = !1;
|
2381
2430
|
switch (o.code) {
|
2382
2431
|
case e.keys.UP:
|
2383
|
-
o.ctrlKey || o.metaKey || o.shiftKey ?
|
2432
|
+
o.ctrlKey || o.metaKey || o.shiftKey ? I(2 * Math.PI * e.rotateSpeed / e.domElement.clientHeight) : te(0, e.keyPanSpeed), w = !0;
|
2384
2433
|
break;
|
2385
2434
|
case e.keys.BOTTOM:
|
2386
|
-
o.ctrlKey || o.metaKey || o.shiftKey ?
|
2435
|
+
o.ctrlKey || o.metaKey || o.shiftKey ? I(-2 * Math.PI * e.rotateSpeed / e.domElement.clientHeight) : te(0, -e.keyPanSpeed), w = !0;
|
2387
2436
|
break;
|
2388
2437
|
case e.keys.LEFT:
|
2389
|
-
o.ctrlKey || o.metaKey || o.shiftKey ?
|
2438
|
+
o.ctrlKey || o.metaKey || o.shiftKey ? j(2 * Math.PI * e.rotateSpeed / e.domElement.clientHeight) : te(e.keyPanSpeed, 0), w = !0;
|
2390
2439
|
break;
|
2391
2440
|
case e.keys.RIGHT:
|
2392
|
-
o.ctrlKey || o.metaKey || o.shiftKey ?
|
2441
|
+
o.ctrlKey || o.metaKey || o.shiftKey ? j(-2 * Math.PI * e.rotateSpeed / e.domElement.clientHeight) : te(-e.keyPanSpeed, 0), w = !0;
|
2393
2442
|
break;
|
2394
2443
|
}
|
2395
2444
|
w && (o.preventDefault(), e.update());
|
2396
2445
|
}
|
2397
|
-
function
|
2446
|
+
function me() {
|
2398
2447
|
if (T.length === 1)
|
2399
2448
|
g.set(T[0].pageX, T[0].pageY);
|
2400
2449
|
else {
|
@@ -2402,23 +2451,23 @@ class ra extends Yt {
|
|
2402
2451
|
g.set(o, w);
|
2403
2452
|
}
|
2404
2453
|
}
|
2405
|
-
function
|
2454
|
+
function Re() {
|
2406
2455
|
if (T.length === 1)
|
2407
|
-
|
2456
|
+
P.set(T[0].pageX, T[0].pageY);
|
2408
2457
|
else {
|
2409
2458
|
const o = 0.5 * (T[0].pageX + T[1].pageX), w = 0.5 * (T[0].pageY + T[1].pageY);
|
2410
|
-
|
2459
|
+
P.set(o, w);
|
2411
2460
|
}
|
2412
2461
|
}
|
2413
2462
|
function ge() {
|
2414
2463
|
const o = T[0].pageX - T[1].pageX, w = T[0].pageY - T[1].pageY, F = Math.sqrt(o * o + w * w);
|
2415
2464
|
b.set(0, F);
|
2416
2465
|
}
|
2417
|
-
function
|
2418
|
-
e.enableZoom && ge(), e.enablePan &&
|
2466
|
+
function ht() {
|
2467
|
+
e.enableZoom && ge(), e.enablePan && Re();
|
2419
2468
|
}
|
2420
2469
|
function Qe() {
|
2421
|
-
e.enableZoom && ge(), e.enableRotate &&
|
2470
|
+
e.enableZoom && ge(), e.enableRotate && me();
|
2422
2471
|
}
|
2423
2472
|
function et(o) {
|
2424
2473
|
if (T.length == 1)
|
@@ -2429,7 +2478,7 @@ class ra extends Yt {
|
|
2429
2478
|
}
|
2430
2479
|
C.subVectors(E, g).multiplyScalar(e.rotateSpeed);
|
2431
2480
|
const w = e.domElement;
|
2432
|
-
|
2481
|
+
j(2 * Math.PI * C.x / w.clientHeight), I(2 * Math.PI * C.y / w.clientHeight), g.copy(E);
|
2433
2482
|
}
|
2434
2483
|
function tt(o) {
|
2435
2484
|
if (T.length === 1)
|
@@ -2438,26 +2487,26 @@ class ra extends Yt {
|
|
2438
2487
|
const w = ye(o), F = 0.5 * (o.pageX + w.x), U = 0.5 * (o.pageY + w.y);
|
2439
2488
|
D.set(F, U);
|
2440
2489
|
}
|
2441
|
-
y.subVectors(D,
|
2490
|
+
y.subVectors(D, P).multiplyScalar(e.panSpeed), te(y.x, y.y), P.copy(D);
|
2442
2491
|
}
|
2443
2492
|
function ve(o) {
|
2444
2493
|
const w = ye(o), F = o.pageX - w.x, U = o.pageY - w.y, K = Math.sqrt(F * F + U * U);
|
2445
|
-
v.set(0, K), O.set(0, Math.pow(v.y / b.y, e.zoomSpeed)),
|
2494
|
+
v.set(0, K), O.set(0, Math.pow(v.y / b.y, e.zoomSpeed)), Me(O.y), b.copy(v);
|
2446
2495
|
}
|
2447
|
-
function
|
2496
|
+
function je(o) {
|
2448
2497
|
e.enableZoom && ve(o), e.enablePan && tt(o);
|
2449
2498
|
}
|
2450
2499
|
function nt(o) {
|
2451
2500
|
e.enableZoom && ve(o), e.enableRotate && et(o);
|
2452
2501
|
}
|
2453
2502
|
function $e(o) {
|
2454
|
-
e.enabled !== !1 && (T.length === 0 && (e.domElement.setPointerCapture(o.pointerId), e.domElement.addEventListener("pointermove", ue), e.domElement.addEventListener("pointerup", be)),
|
2503
|
+
e.enabled !== !1 && (T.length === 0 && (e.domElement.setPointerCapture(o.pointerId), e.domElement.addEventListener("pointermove", ue), e.domElement.addEventListener("pointerup", be)), mt(o), o.pointerType === "touch" ? rt(o) : pt(o));
|
2455
2504
|
}
|
2456
2505
|
function ue(o) {
|
2457
2506
|
e.enabled !== !1 && (o.pointerType === "touch" ? it(o) : Ge(o));
|
2458
2507
|
}
|
2459
2508
|
function be(o) {
|
2460
|
-
ot(o), T.length === 0 && (e.domElement.releasePointerCapture(o.pointerId), e.domElement.removeEventListener("pointermove", ue), e.domElement.removeEventListener("pointerup", be)), e.dispatchEvent(
|
2509
|
+
ot(o), T.length === 0 && (e.domElement.releasePointerCapture(o.pointerId), e.domElement.removeEventListener("pointermove", ue), e.domElement.removeEventListener("pointerup", be)), e.dispatchEvent(Ut), d = i.NONE;
|
2461
2510
|
}
|
2462
2511
|
function pt(o) {
|
2463
2512
|
let w;
|
@@ -2478,37 +2527,37 @@ class ra extends Yt {
|
|
2478
2527
|
case De.DOLLY:
|
2479
2528
|
if (e.enableZoom === !1)
|
2480
2529
|
return;
|
2481
|
-
Ze(o),
|
2530
|
+
Ze(o), d = i.DOLLY;
|
2482
2531
|
break;
|
2483
2532
|
case De.ROTATE:
|
2484
2533
|
if (o.ctrlKey || o.metaKey || o.shiftKey) {
|
2485
2534
|
if (e.enablePan === !1)
|
2486
2535
|
return;
|
2487
|
-
Fe(o),
|
2536
|
+
Fe(o), d = i.PAN;
|
2488
2537
|
} else {
|
2489
2538
|
if (e.enableRotate === !1)
|
2490
2539
|
return;
|
2491
|
-
Le(o),
|
2540
|
+
Le(o), d = i.ROTATE;
|
2492
2541
|
}
|
2493
2542
|
break;
|
2494
2543
|
case De.PAN:
|
2495
2544
|
if (o.ctrlKey || o.metaKey || o.shiftKey) {
|
2496
2545
|
if (e.enableRotate === !1)
|
2497
2546
|
return;
|
2498
|
-
Le(o),
|
2547
|
+
Le(o), d = i.ROTATE;
|
2499
2548
|
} else {
|
2500
2549
|
if (e.enablePan === !1)
|
2501
2550
|
return;
|
2502
|
-
Fe(o),
|
2551
|
+
Fe(o), d = i.PAN;
|
2503
2552
|
}
|
2504
2553
|
break;
|
2505
2554
|
default:
|
2506
|
-
|
2555
|
+
d = i.NONE;
|
2507
2556
|
}
|
2508
|
-
|
2557
|
+
d !== i.NONE && e.dispatchEvent(gt);
|
2509
2558
|
}
|
2510
2559
|
function Ge(o) {
|
2511
|
-
switch (
|
2560
|
+
switch (d) {
|
2512
2561
|
case i.ROTATE:
|
2513
2562
|
if (e.enableRotate === !1)
|
2514
2563
|
return;
|
@@ -2517,17 +2566,17 @@ class ra extends Yt {
|
|
2517
2566
|
case i.DOLLY:
|
2518
2567
|
if (e.enableZoom === !1)
|
2519
2568
|
return;
|
2520
|
-
|
2569
|
+
dt(o);
|
2521
2570
|
break;
|
2522
2571
|
case i.PAN:
|
2523
2572
|
if (e.enablePan === !1)
|
2524
2573
|
return;
|
2525
|
-
|
2574
|
+
ft(o);
|
2526
2575
|
break;
|
2527
2576
|
}
|
2528
2577
|
}
|
2529
2578
|
function at(o) {
|
2530
|
-
e.enabled === !1 || e.enableZoom === !1 ||
|
2579
|
+
e.enabled === !1 || e.enableZoom === !1 || d !== i.NONE || (o.preventDefault(), e.dispatchEvent(gt), Ue(o), e.dispatchEvent(Ut));
|
2531
2580
|
}
|
2532
2581
|
function Ye(o) {
|
2533
2582
|
e.enabled === !1 || e.enablePan === !1 || Be(o);
|
@@ -2539,15 +2588,15 @@ class ra extends Yt {
|
|
2539
2588
|
case _e.ROTATE:
|
2540
2589
|
if (e.enableRotate === !1)
|
2541
2590
|
return;
|
2542
|
-
|
2591
|
+
me(), d = i.TOUCH_ROTATE;
|
2543
2592
|
break;
|
2544
2593
|
case _e.PAN:
|
2545
2594
|
if (e.enablePan === !1)
|
2546
2595
|
return;
|
2547
|
-
|
2596
|
+
Re(), d = i.TOUCH_PAN;
|
2548
2597
|
break;
|
2549
2598
|
default:
|
2550
|
-
|
2599
|
+
d = i.NONE;
|
2551
2600
|
}
|
2552
2601
|
break;
|
2553
2602
|
case 2:
|
@@ -2555,24 +2604,24 @@ class ra extends Yt {
|
|
2555
2604
|
case _e.DOLLY_PAN:
|
2556
2605
|
if (e.enableZoom === !1 && e.enablePan === !1)
|
2557
2606
|
return;
|
2558
|
-
|
2607
|
+
ht(), d = i.TOUCH_DOLLY_PAN;
|
2559
2608
|
break;
|
2560
2609
|
case _e.DOLLY_ROTATE:
|
2561
2610
|
if (e.enableZoom === !1 && e.enableRotate === !1)
|
2562
2611
|
return;
|
2563
|
-
Qe(),
|
2612
|
+
Qe(), d = i.TOUCH_DOLLY_ROTATE;
|
2564
2613
|
break;
|
2565
2614
|
default:
|
2566
|
-
|
2615
|
+
d = i.NONE;
|
2567
2616
|
}
|
2568
2617
|
break;
|
2569
2618
|
default:
|
2570
|
-
|
2619
|
+
d = i.NONE;
|
2571
2620
|
}
|
2572
|
-
|
2621
|
+
d !== i.NONE && e.dispatchEvent(gt);
|
2573
2622
|
}
|
2574
2623
|
function it(o) {
|
2575
|
-
switch (Ve(o),
|
2624
|
+
switch (Ve(o), d) {
|
2576
2625
|
case i.TOUCH_ROTATE:
|
2577
2626
|
if (e.enableRotate === !1)
|
2578
2627
|
return;
|
@@ -2586,7 +2635,7 @@ class ra extends Yt {
|
|
2586
2635
|
case i.TOUCH_DOLLY_PAN:
|
2587
2636
|
if (e.enableZoom === !1 && e.enablePan === !1)
|
2588
2637
|
return;
|
2589
|
-
|
2638
|
+
je(o), e.update();
|
2590
2639
|
break;
|
2591
2640
|
case i.TOUCH_DOLLY_ROTATE:
|
2592
2641
|
if (e.enableZoom === !1 && e.enableRotate === !1)
|
@@ -2594,13 +2643,13 @@ class ra extends Yt {
|
|
2594
2643
|
nt(o), e.update();
|
2595
2644
|
break;
|
2596
2645
|
default:
|
2597
|
-
|
2646
|
+
d = i.NONE;
|
2598
2647
|
}
|
2599
2648
|
}
|
2600
2649
|
function de(o) {
|
2601
2650
|
e.enabled !== !1 && o.preventDefault();
|
2602
2651
|
}
|
2603
|
-
function
|
2652
|
+
function mt(o) {
|
2604
2653
|
T.push(o);
|
2605
2654
|
}
|
2606
2655
|
function ot(o) {
|
@@ -2623,22 +2672,22 @@ class ra extends Yt {
|
|
2623
2672
|
}
|
2624
2673
|
}
|
2625
2674
|
const xt = (t) => {
|
2626
|
-
const [n, r] = re(!1), [e, i] = re(t.options[t.index]),
|
2675
|
+
const [n, r] = re(!1), [e, i] = re(t.options[t.index]), d = () => {
|
2627
2676
|
r(!n);
|
2628
2677
|
}, c = (s) => {
|
2629
2678
|
s !== e && (t.onSelect(s), i(s)), r(!1);
|
2630
2679
|
};
|
2631
|
-
return /* @__PURE__ */
|
2632
|
-
/* @__PURE__ */
|
2633
|
-
n && /* @__PURE__ */
|
2680
|
+
return /* @__PURE__ */ u.jsxs("div", { className: `dropdown ${t.up === !0 ? "up" : ""}`, children: [
|
2681
|
+
/* @__PURE__ */ u.jsx("div", { className: "dropdown-toggle", onClick: d, children: e }),
|
2682
|
+
n && /* @__PURE__ */ u.jsx("ul", { className: "dropdown-menu", children: t.options.map((s) => /* @__PURE__ */ u.jsx("li", { onClick: () => c(s), children: s }, s)) })
|
2634
2683
|
] });
|
2635
|
-
}, Ce =
|
2684
|
+
}, Ce = Pn(function(n, r) {
|
2636
2685
|
const e = n.options.indexOf(n.camera.name);
|
2637
|
-
return /* @__PURE__ */
|
2638
|
-
/* @__PURE__ */
|
2639
|
-
/* @__PURE__ */
|
2686
|
+
return /* @__PURE__ */ u.jsxs("div", { className: "CameraWindow", children: [
|
2687
|
+
/* @__PURE__ */ u.jsx("div", { ref: r, className: "clickable" }),
|
2688
|
+
/* @__PURE__ */ u.jsx(xt, { index: e, options: n.options, onSelect: n.onSelect, up: !0 })
|
2640
2689
|
] });
|
2641
|
-
}),
|
2690
|
+
}), aa = `out vec3 worldPosition;
|
2642
2691
|
uniform float uDistance;
|
2643
2692
|
|
2644
2693
|
void main() {
|
@@ -2647,7 +2696,7 @@ void main() {
|
|
2647
2696
|
worldPosition.xz += cameraPosition.xz;
|
2648
2697
|
|
2649
2698
|
gl_Position = projectionMatrix * modelViewMatrix * vec4(worldPosition, 1.0);
|
2650
|
-
}`,
|
2699
|
+
}`, ra = `out vec4 fragColor;
|
2651
2700
|
in vec3 worldPosition;
|
2652
2701
|
|
2653
2702
|
uniform float uDivisions;
|
@@ -2715,14 +2764,14 @@ void main() {
|
|
2715
2764
|
|
2716
2765
|
if (fragColor.a <= 0.0) discard;
|
2717
2766
|
}`;
|
2718
|
-
class
|
2767
|
+
class ia extends pn {
|
2719
2768
|
constructor(n) {
|
2720
2769
|
super({
|
2721
2770
|
extensions: {
|
2722
2771
|
derivatives: !0
|
2723
2772
|
},
|
2724
|
-
glslVersion:
|
2725
|
-
side:
|
2773
|
+
glslVersion: mn,
|
2774
|
+
side: gn,
|
2726
2775
|
transparent: !0,
|
2727
2776
|
uniforms: {
|
2728
2777
|
uScale: {
|
@@ -2732,7 +2781,7 @@ class sa extends vn {
|
|
2732
2781
|
value: (n == null ? void 0 : n.divisions) !== void 0 ? n == null ? void 0 : n.divisions : 10
|
2733
2782
|
},
|
2734
2783
|
uColor: {
|
2735
|
-
value: (n == null ? void 0 : n.color) !== void 0 ? n == null ? void 0 : n.color : new
|
2784
|
+
value: (n == null ? void 0 : n.color) !== void 0 ? n == null ? void 0 : n.color : new Ct(16777215)
|
2736
2785
|
},
|
2737
2786
|
uDistance: {
|
2738
2787
|
value: (n == null ? void 0 : n.distance) !== void 0 ? n == null ? void 0 : n.distance : 1e4
|
@@ -2744,17 +2793,17 @@ class sa extends vn {
|
|
2744
2793
|
value: (n == null ? void 0 : n.gridOpacity) !== void 0 ? n == null ? void 0 : n.gridOpacity : 0.25
|
2745
2794
|
}
|
2746
2795
|
},
|
2747
|
-
vertexShader:
|
2748
|
-
fragmentShader:
|
2796
|
+
vertexShader: aa,
|
2797
|
+
fragmentShader: ra,
|
2749
2798
|
name: "InfiniteGrid",
|
2750
2799
|
depthWrite: !1
|
2751
2800
|
});
|
2752
2801
|
}
|
2753
2802
|
}
|
2754
|
-
class
|
2803
|
+
class oa extends vn {
|
2755
2804
|
constructor() {
|
2756
|
-
const r = new
|
2757
|
-
super(new
|
2805
|
+
const r = new ia();
|
2806
|
+
super(new bn(2, 2), r);
|
2758
2807
|
$(this, "gridMaterial");
|
2759
2808
|
this.gridMaterial = r, this.frustumCulled = !1, this.name = "InfiniteGridHelper", this.position.y = 0.1;
|
2760
2809
|
}
|
@@ -2762,14 +2811,14 @@ class ca extends Vt {
|
|
2762
2811
|
this.gridMaterial.needsUpdate = !0;
|
2763
2812
|
}
|
2764
2813
|
}
|
2765
|
-
const
|
2814
|
+
const $t = [
|
2766
2815
|
"Single",
|
2767
2816
|
"Side by Side",
|
2768
2817
|
"Stacked",
|
2769
2818
|
"Quad"
|
2770
2819
|
], q = /* @__PURE__ */ new Map(), H = /* @__PURE__ */ new Map(), ce = /* @__PURE__ */ new Map();
|
2771
2820
|
function Oe(t, n) {
|
2772
|
-
const r = new
|
2821
|
+
const r = new Vt(-100, 100, 100, -100, 50, 3e3);
|
2773
2822
|
return r.name = t, r.position.copy(n), r.lookAt(0, 0, 0), q.set(t, r), r;
|
2774
2823
|
}
|
2775
2824
|
Oe("Top", new G(0, 1e3, 0));
|
@@ -2779,30 +2828,30 @@ Oe("Right", new G(1e3, 0, 0));
|
|
2779
2828
|
Oe("Front", new G(0, 0, 1e3));
|
2780
2829
|
Oe("Back", new G(0, 0, -1e3));
|
2781
2830
|
Oe("Orthographic", new G(1e3, 1e3, 1e3));
|
2782
|
-
const
|
2783
|
-
|
2784
|
-
|
2785
|
-
|
2786
|
-
q.set("Debug",
|
2787
|
-
let
|
2788
|
-
const
|
2831
|
+
const ut = new bt(60, 1, 50, 3e3);
|
2832
|
+
ut.name = "Debug";
|
2833
|
+
ut.position.set(500, 500, 500);
|
2834
|
+
ut.lookAt(0, 0, 0);
|
2835
|
+
q.set("Debug", ut);
|
2836
|
+
let vt = "Default";
|
2837
|
+
const sa = [
|
2789
2838
|
"Default",
|
2790
2839
|
"Normals",
|
2791
2840
|
"Wireframe"
|
2792
|
-
],
|
2841
|
+
], ca = new yn(), la = new En({
|
2793
2842
|
opacity: 0.33,
|
2794
2843
|
transparent: !0,
|
2795
2844
|
wireframe: !0
|
2796
|
-
}), V = new
|
2797
|
-
function
|
2798
|
-
const [n, r] = re(t.mode !== void 0 ? t.mode : "Quad"), e = Se(null), i = Se(null),
|
2799
|
-
let s = q.get("Debug"),
|
2845
|
+
}), V = new wn();
|
2846
|
+
function Ma(t) {
|
2847
|
+
const [n, r] = re(t.mode !== void 0 ? t.mode : "Quad"), e = Se(null), i = Se(null), d = Se(null), c = Se(null);
|
2848
|
+
let s = q.get("Debug"), l = q.get("Orthographic"), h = q.get("Front"), p = q.get("Top");
|
2800
2849
|
const g = (y, b) => {
|
2801
2850
|
const v = H.get(y.name);
|
2802
2851
|
v !== void 0 && v.dispose(), H.delete(y.name);
|
2803
2852
|
const O = ce.get(y.name);
|
2804
2853
|
O !== void 0 && (V.remove(O), O.dispose()), ce.delete(y.name);
|
2805
|
-
const
|
2854
|
+
const R = new na(y, b);
|
2806
2855
|
switch (y.name) {
|
2807
2856
|
case "Top":
|
2808
2857
|
case "Bottom":
|
@@ -2810,11 +2859,11 @@ function ja(t) {
|
|
2810
2859
|
case "Right":
|
2811
2860
|
case "Front":
|
2812
2861
|
case "Back":
|
2813
|
-
|
2862
|
+
R.enableRotate = !1;
|
2814
2863
|
break;
|
2815
2864
|
}
|
2816
|
-
if (H.set(y.name,
|
2817
|
-
const z = new
|
2865
|
+
if (H.set(y.name, R), y instanceof bt) {
|
2866
|
+
const z = new Cn(y);
|
2818
2867
|
ce.set(y.name, z), V.add(z);
|
2819
2868
|
}
|
2820
2869
|
}, E = (y) => {
|
@@ -2828,62 +2877,62 @@ function ja(t) {
|
|
2828
2877
|
const v = ce.get(b);
|
2829
2878
|
v !== void 0 && (V.remove(v), v.dispose()), ce.delete(b), H.delete(b);
|
2830
2879
|
}), H.clear(), ce.clear();
|
2831
|
-
},
|
2880
|
+
}, P = () => {
|
2832
2881
|
switch (n) {
|
2833
2882
|
case "Single":
|
2834
2883
|
g(s, e.current);
|
2835
2884
|
break;
|
2836
2885
|
case "Side by Side":
|
2837
2886
|
case "Stacked":
|
2838
|
-
g(s, e.current), g(
|
2887
|
+
g(s, e.current), g(l, i.current);
|
2839
2888
|
break;
|
2840
2889
|
case "Quad":
|
2841
|
-
g(s, e.current), g(
|
2890
|
+
g(s, e.current), g(l, i.current), g(h, d.current), g(p, c.current);
|
2842
2891
|
break;
|
2843
2892
|
}
|
2844
2893
|
};
|
2845
2894
|
qe(() => {
|
2846
2895
|
V.name = "Debug Scene", V.add(t.scene);
|
2847
|
-
const y = new
|
2896
|
+
const y = new oa();
|
2848
2897
|
V.add(y);
|
2849
|
-
const b = new
|
2898
|
+
const b = new xn(500);
|
2850
2899
|
b.name = "axisHelper", V.add(b);
|
2851
2900
|
}, []), qe(() => {
|
2852
2901
|
const y = t.renderer.getSize(new ae());
|
2853
|
-
let b = y.x, v = y.y, O = Math.floor(b / 2),
|
2902
|
+
let b = y.x, v = y.y, O = Math.floor(b / 2), R = Math.floor(v / 2), z = -1;
|
2854
2903
|
const ee = () => {
|
2855
|
-
b = window.innerWidth - 300, v = window.innerHeight, O = Math.floor(b / 2),
|
2856
|
-
let
|
2904
|
+
b = window.innerWidth - 300, v = window.innerHeight, O = Math.floor(b / 2), R = Math.floor(v / 2);
|
2905
|
+
let j = b, I = v;
|
2857
2906
|
switch (n) {
|
2858
2907
|
case "Side by Side":
|
2859
|
-
|
2908
|
+
j = O, I = v;
|
2860
2909
|
break;
|
2861
2910
|
case "Stacked":
|
2862
|
-
|
2911
|
+
j = b, I = R;
|
2863
2912
|
break;
|
2864
2913
|
case "Quad":
|
2865
|
-
|
2914
|
+
j = O, I = R;
|
2866
2915
|
break;
|
2867
2916
|
}
|
2868
2917
|
q.forEach((L) => {
|
2869
2918
|
var J;
|
2870
|
-
L instanceof
|
2919
|
+
L instanceof Vt ? (L.left = j / -2, L.right = j / 2, L.top = I / 2, L.bottom = I / -2, L.updateProjectionMatrix()) : L instanceof bt && (L.aspect = j / I, L.updateProjectionMatrix(), (J = ce.get(L.name)) == null || J.update());
|
2871
2920
|
});
|
2872
2921
|
}, T = () => {
|
2873
2922
|
t.renderer.setViewport(0, 0, b, v), t.renderer.setScissor(0, 0, b, v), t.renderer.render(V, s);
|
2874
2923
|
}, le = () => {
|
2875
2924
|
if (n === "Side by Side")
|
2876
|
-
t.renderer.setViewport(0, 0, O, v), t.renderer.setScissor(0, 0, O, v), t.renderer.render(V, s), t.renderer.setViewport(O, 0, O, v), t.renderer.setScissor(O, 0, O, v), t.renderer.render(V,
|
2925
|
+
t.renderer.setViewport(0, 0, O, v), t.renderer.setScissor(0, 0, O, v), t.renderer.render(V, s), t.renderer.setViewport(O, 0, O, v), t.renderer.setScissor(O, 0, O, v), t.renderer.render(V, l);
|
2877
2926
|
else {
|
2878
|
-
const
|
2879
|
-
t.renderer.setViewport(0,
|
2927
|
+
const j = v - R;
|
2928
|
+
t.renderer.setViewport(0, j, b, R), t.renderer.setScissor(0, j, b, R), t.renderer.render(V, s), t.renderer.setViewport(0, 0, b, R), t.renderer.setScissor(0, 0, b, R), t.renderer.render(V, l);
|
2880
2929
|
}
|
2881
2930
|
}, Te = () => {
|
2882
|
-
let
|
2883
|
-
|
2931
|
+
let j = 0, I = 0;
|
2932
|
+
I = v - R, j = 0, t.renderer.setViewport(j, I, O, R), t.renderer.setScissor(j, I, O, R), t.renderer.render(V, s), j = O, t.renderer.setViewport(j, I, O, R), t.renderer.setScissor(j, I, O, R), t.renderer.render(V, l), I = 0, j = 0, t.renderer.setViewport(j, I, O, R), t.renderer.setScissor(j, I, O, R), t.renderer.render(V, h), j = O, t.renderer.setViewport(j, I, O, R), t.renderer.setScissor(j, I, O, R), t.renderer.render(V, p);
|
2884
2933
|
}, oe = () => {
|
2885
|
-
switch (H.forEach((
|
2886
|
-
|
2934
|
+
switch (H.forEach((j) => {
|
2935
|
+
j.update();
|
2887
2936
|
}), t.scene.update(), t.renderer.clear(), n) {
|
2888
2937
|
case "Single":
|
2889
2938
|
T();
|
@@ -2898,7 +2947,7 @@ function ja(t) {
|
|
2898
2947
|
}
|
2899
2948
|
z = requestAnimationFrame(oe);
|
2900
2949
|
};
|
2901
|
-
return
|
2950
|
+
return P(), window.addEventListener("resize", ee), ee(), oe(), () => {
|
2902
2951
|
window.removeEventListener("resize", ee), cancelAnimationFrame(z), z = -1;
|
2903
2952
|
};
|
2904
2953
|
}, [n]);
|
@@ -2914,82 +2963,82 @@ function ja(t) {
|
|
2914
2963
|
];
|
2915
2964
|
return t.cameras.forEach((y) => {
|
2916
2965
|
q.set(y.name, y), D.push(y.name);
|
2917
|
-
}), /* @__PURE__ */
|
2918
|
-
/* @__PURE__ */
|
2919
|
-
n === "Single" && /* @__PURE__ */
|
2966
|
+
}), /* @__PURE__ */ u.jsxs("div", { className: "multiview", children: [
|
2967
|
+
/* @__PURE__ */ u.jsxs("div", { className: `cameras ${n === "Single" || n === "Stacked" ? "single" : ""}`, children: [
|
2968
|
+
n === "Single" && /* @__PURE__ */ u.jsx(u.Fragment, { children: /* @__PURE__ */ u.jsx(Ce, { camera: s, options: D, ref: e, onSelect: (y) => {
|
2920
2969
|
var v;
|
2921
2970
|
(v = H.get(s.name)) == null || v.dispose();
|
2922
2971
|
const b = q.get(y);
|
2923
2972
|
b !== void 0 && (E(s), s = b, g(b, e.current));
|
2924
2973
|
} }) }),
|
2925
|
-
(n === "Side by Side" || n === "Stacked") && /* @__PURE__ */
|
2926
|
-
/* @__PURE__ */
|
2974
|
+
(n === "Side by Side" || n === "Stacked") && /* @__PURE__ */ u.jsxs(u.Fragment, { children: [
|
2975
|
+
/* @__PURE__ */ u.jsx(Ce, { camera: s, options: D, ref: e, onSelect: (y) => {
|
2927
2976
|
var v;
|
2928
2977
|
(v = H.get(s.name)) == null || v.dispose();
|
2929
2978
|
const b = q.get(y);
|
2930
2979
|
b !== void 0 && (E(s), s = b, g(b, e.current));
|
2931
2980
|
} }),
|
2932
|
-
/* @__PURE__ */
|
2981
|
+
/* @__PURE__ */ u.jsx(Ce, { camera: l, options: D, ref: i, onSelect: (y) => {
|
2933
2982
|
var v;
|
2934
|
-
(v = H.get(
|
2983
|
+
(v = H.get(l.name)) == null || v.dispose();
|
2935
2984
|
const b = q.get(y);
|
2936
|
-
b !== void 0 && (E(
|
2985
|
+
b !== void 0 && (E(l), l = b, g(b, i.current));
|
2937
2986
|
} })
|
2938
2987
|
] }),
|
2939
|
-
n === "Quad" && /* @__PURE__ */
|
2940
|
-
/* @__PURE__ */
|
2988
|
+
n === "Quad" && /* @__PURE__ */ u.jsxs(u.Fragment, { children: [
|
2989
|
+
/* @__PURE__ */ u.jsx(Ce, { camera: s, options: D, ref: e, onSelect: (y) => {
|
2941
2990
|
var v;
|
2942
2991
|
(v = H.get(s.name)) == null || v.dispose();
|
2943
2992
|
const b = q.get(y);
|
2944
2993
|
b !== void 0 && (E(s), s = b, g(b, e.current));
|
2945
2994
|
} }),
|
2946
|
-
/* @__PURE__ */
|
2995
|
+
/* @__PURE__ */ u.jsx(Ce, { camera: l, options: D, ref: i, onSelect: (y) => {
|
2947
2996
|
var v;
|
2948
|
-
(v = H.get(
|
2997
|
+
(v = H.get(l.name)) == null || v.dispose();
|
2949
2998
|
const b = q.get(y);
|
2950
|
-
b !== void 0 && (E(
|
2999
|
+
b !== void 0 && (E(l), l = b, g(b, i.current));
|
2951
3000
|
} }),
|
2952
|
-
/* @__PURE__ */
|
3001
|
+
/* @__PURE__ */ u.jsx(Ce, { camera: h, options: D, ref: d, onSelect: (y) => {
|
2953
3002
|
var v;
|
2954
3003
|
(v = H.get(h.name)) == null || v.dispose();
|
2955
3004
|
const b = q.get(y);
|
2956
|
-
b !== void 0 && (E(h), h = b, g(b,
|
3005
|
+
b !== void 0 && (E(h), h = b, g(b, d.current));
|
2957
3006
|
} }),
|
2958
|
-
/* @__PURE__ */
|
3007
|
+
/* @__PURE__ */ u.jsx(Ce, { camera: p, options: D, ref: c, onSelect: (y) => {
|
2959
3008
|
var v;
|
2960
|
-
(v = H.get(
|
3009
|
+
(v = H.get(p.name)) == null || v.dispose();
|
2961
3010
|
const b = q.get(y);
|
2962
|
-
b !== void 0 && (E(
|
3011
|
+
b !== void 0 && (E(p), p = b, g(b, c.current));
|
2963
3012
|
} })
|
2964
3013
|
] })
|
2965
3014
|
] }),
|
2966
|
-
/* @__PURE__ */
|
2967
|
-
/* @__PURE__ */
|
3015
|
+
/* @__PURE__ */ u.jsxs("div", { className: "settings", children: [
|
3016
|
+
/* @__PURE__ */ u.jsx(
|
2968
3017
|
xt,
|
2969
3018
|
{
|
2970
|
-
index:
|
2971
|
-
options:
|
3019
|
+
index: $t.indexOf(n),
|
3020
|
+
options: $t,
|
2972
3021
|
onSelect: (y) => {
|
2973
3022
|
y !== n && (C(), r(y));
|
2974
3023
|
}
|
2975
3024
|
}
|
2976
3025
|
),
|
2977
|
-
/* @__PURE__ */
|
3026
|
+
/* @__PURE__ */ u.jsx(
|
2978
3027
|
xt,
|
2979
3028
|
{
|
2980
3029
|
index: 0,
|
2981
|
-
options:
|
3030
|
+
options: sa,
|
2982
3031
|
onSelect: (y) => {
|
2983
|
-
if (y !==
|
2984
|
-
switch (
|
3032
|
+
if (y !== vt)
|
3033
|
+
switch (vt = y, vt) {
|
2985
3034
|
case "Default":
|
2986
3035
|
V.overrideMaterial = null;
|
2987
3036
|
break;
|
2988
3037
|
case "Normals":
|
2989
|
-
V.overrideMaterial =
|
3038
|
+
V.overrideMaterial = ca;
|
2990
3039
|
break;
|
2991
3040
|
case "Wireframe":
|
2992
|
-
V.overrideMaterial =
|
3041
|
+
V.overrideMaterial = la;
|
2993
3042
|
break;
|
2994
3043
|
}
|
2995
3044
|
}
|
@@ -2998,41 +3047,41 @@ function ja(t) {
|
|
2998
3047
|
] })
|
2999
3048
|
] });
|
3000
3049
|
}
|
3001
|
-
function
|
3002
|
-
return /* @__PURE__ */
|
3003
|
-
/* @__PURE__ */
|
3050
|
+
function Pa(t) {
|
3051
|
+
return /* @__PURE__ */ u.jsxs("div", { className: "editor", ref: t.ref, style: t.style, children: [
|
3052
|
+
/* @__PURE__ */ u.jsx("header", { children: t.header }),
|
3004
3053
|
t.children,
|
3005
|
-
/* @__PURE__ */
|
3054
|
+
/* @__PURE__ */ u.jsx("footer", { children: t.footer })
|
3006
3055
|
] });
|
3007
3056
|
}
|
3008
3057
|
export {
|
3009
3058
|
wt as Accordion,
|
3010
|
-
|
3011
|
-
|
3012
|
-
|
3013
|
-
|
3014
|
-
|
3015
|
-
|
3016
|
-
|
3017
|
-
|
3018
|
-
|
3019
|
-
|
3020
|
-
|
3021
|
-
|
3022
|
-
|
3023
|
-
|
3024
|
-
|
3025
|
-
|
3026
|
-
|
3027
|
-
|
3028
|
-
|
3029
|
-
|
3059
|
+
ya as Application,
|
3060
|
+
lt as BaseRemote,
|
3061
|
+
Zt as ChildObject,
|
3062
|
+
Vn as ContainerObject,
|
3063
|
+
$n as Draggable,
|
3064
|
+
Bn as DraggableItem,
|
3065
|
+
Gn as Dropdown,
|
3066
|
+
Yn as DropdownItem,
|
3067
|
+
Pa as Editor,
|
3068
|
+
oa as InfiniteGridHelper,
|
3069
|
+
ea as Inspector,
|
3070
|
+
Ma as MultiView,
|
3071
|
+
qt as NavButton,
|
3072
|
+
Ea as RemoteComponents,
|
3073
|
+
Sa as RemoteController,
|
3074
|
+
wa as RemoteTheatre,
|
3075
|
+
xa as RemoteThree,
|
3076
|
+
Ca as RemoteTweakpane,
|
3077
|
+
Oa as SceneHierarchy,
|
3078
|
+
Ta as SceneInspector,
|
3030
3079
|
N as ToolEvents,
|
3031
|
-
|
3032
|
-
|
3033
|
-
|
3034
|
-
|
3035
|
-
|
3036
|
-
|
3037
|
-
|
3080
|
+
va as clamp,
|
3081
|
+
kn as colorToHex,
|
3082
|
+
A as debugDispatcher,
|
3083
|
+
ba as distance,
|
3084
|
+
Ht as hierarchyUUID,
|
3085
|
+
jn as isColor,
|
3086
|
+
Rn as randomID
|
3038
3087
|
};
|