x_ite 8.6.18 → 8.6.19
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/assets/components/Annotation.js +13 -13
- package/dist/assets/components/Annotation.min.js +1 -1
- package/dist/assets/components/CADGeometry.js +13 -13
- package/dist/assets/components/CADGeometry.min.js +1 -1
- package/dist/assets/components/CubeMapTexturing.js +25 -25
- package/dist/assets/components/CubeMapTexturing.min.js +1 -1
- package/dist/assets/components/DIS.js +13 -13
- package/dist/assets/components/DIS.min.js +1 -1
- package/dist/assets/components/EventUtilities.js +9 -9
- package/dist/assets/components/EventUtilities.min.js +1 -1
- package/dist/assets/components/Geometry2D.js +19 -19
- package/dist/assets/components/Geometry2D.min.js +1 -1
- package/dist/assets/components/Geospatial.js +33 -33
- package/dist/assets/components/Geospatial.min.js +1 -1
- package/dist/assets/components/HAnim.js +18 -18
- package/dist/assets/components/HAnim.min.js +1 -1
- package/dist/assets/components/KeyDeviceSensor.js +8 -8
- package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
- package/dist/assets/components/Layout.js +27 -27
- package/dist/assets/components/Layout.min.js +1 -1
- package/dist/assets/components/NURBS.js +24 -24
- package/dist/assets/components/NURBS.min.js +1 -1
- package/dist/assets/components/ParticleSystems.js +23 -25
- package/dist/assets/components/ParticleSystems.min.js +1 -1
- package/dist/assets/components/Picking.js +19 -21
- package/dist/assets/components/Picking.min.js +1 -1
- package/dist/assets/components/RigidBodyPhysics.js +18 -18
- package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
- package/dist/assets/components/Scripting.js +30 -32
- package/dist/assets/components/Scripting.min.js +1 -1
- package/dist/assets/components/Text.js +24 -24
- package/dist/assets/components/Text.min.js +1 -1
- package/dist/assets/components/TextureProjector.js +14 -14
- package/dist/assets/components/TextureProjector.min.js +1 -1
- package/dist/assets/components/Texturing3D.js +30 -30
- package/dist/assets/components/Texturing3D.min.js +1 -1
- package/dist/assets/components/VolumeRendering.js +19 -19
- package/dist/assets/components/VolumeRendering.min.js +1 -1
- package/dist/assets/components/X_ITE.js +9 -9
- package/dist/assets/components/X_ITE.min.js +1 -1
- package/dist/example.html +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.js +172 -182
- package/dist/x_ite.min.js +1 -1
- package/dist/x_ite.zip +0 -0
- package/docs/_config.yml +1 -1
- package/docs/_posts/getting-started.md +1 -1
- package/docs/_posts/setup-a-localhost-server.md +2 -2
- package/package.json +4 -4
- package/src/example.html +1 -1
- package/src/standard/Math/Algorithm.js +1 -1
- package/src/standard/Math/Algorithms/MergeSort.js +7 -5
- package/src/standard/Math/Algorithms/PartialSort.js +3 -1
- package/src/standard/Math/Algorithms/QuickSort.js +1 -3
- package/src/standard/Math/Geometry/Box2.js +1 -1
- package/src/standard/Math/Geometry/Box3.js +1 -1
- package/src/standard/Math/Numbers/Quaternion.js +4 -3
- package/src/standard/Math/Numbers/Rotation4.js +4 -3
- package/src/x_ite/Base/X3DBaseNode.js +1 -1
- package/src/x_ite/Base/X3DEventObject.js +3 -2
- package/src/x_ite/Base/X3DField.js +2 -2
- package/src/x_ite/Browser/Core/Context.js +1 -1
- package/src/x_ite/Browser/Navigation/ExamineViewer.js +1 -1
- package/src/x_ite/Browser/Networking/X3DNetworkingContext.js +10 -7
- package/src/x_ite/Browser/VERSION.js +1 -1
- package/src/x_ite/Browser/X3DBrowser.js +33 -44
- package/src/x_ite/Browser/X3DBrowserContext.js +3 -3
- package/src/x_ite/Components/Scripting/Script.js +2 -4
- package/src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js +1 -1
- package/src/x_ite/Components/Sound/AudioClip.js +3 -3
- package/src/x_ite/Components/Sound/DynamicsCompressor.js +4 -4
- package/src/x_ite/Components/Texturing/MovieTexture.js +3 -3
- package/src/x_ite/Execution/Scene.js +1 -1
- package/src/x_ite/Fields/SFNode.js +5 -3
- package/src/x_ite/Fields/SFRotation.js +2 -4
- package/src/x_ite/Fields/SFVecPrototypeTemplate.js +3 -3
- package/src/x_ite/InputOutput/FileLoader.js +3 -4
- package/src/x_ite/InputOutput/Generator.js +1 -1
- package/src/x_ite/Parser/X3DParser.js +4 -4
- package/src/x_ite/Parser/XMLParser.js +13 -19
- package/docs/_tabs/imprint.md +0 -52
package/dist/x_ite.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* X_ITE v8.6.
|
|
1
|
+
/* X_ITE v8.6.19 */(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
2
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
3
|
module.exports = factory();
|
|
4
4
|
else if(typeof define === 'function' && define.amd)
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ var __webpack_modules__ = ({
|
|
13
13
|
|
|
14
|
-
/***/
|
|
14
|
+
/***/ 544:
|
|
15
15
|
/***/ (function(module, exports, __webpack_require__) {
|
|
16
16
|
|
|
17
17
|
"use strict";
|
|
18
|
-
/* provided dependency */ var jQuery = __webpack_require__(
|
|
18
|
+
/* provided dependency */ var jQuery = __webpack_require__(849);
|
|
19
19
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;
|
|
20
20
|
|
|
21
21
|
/**
|
|
@@ -387,10 +387,10 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;
|
|
|
387
387
|
|
|
388
388
|
/***/ }),
|
|
389
389
|
|
|
390
|
-
/***/
|
|
390
|
+
/***/ 865:
|
|
391
391
|
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
|
|
392
392
|
|
|
393
|
-
/* provided dependency */ var jQuery = __webpack_require__(
|
|
393
|
+
/* provided dependency */ var jQuery = __webpack_require__(849);
|
|
394
394
|
/**
|
|
395
395
|
* @preserve jquery.fullscreen 1.1.5
|
|
396
396
|
* https://github.com/code-lts/jquery-fullscreen-plugin
|
|
@@ -586,7 +586,7 @@ installFullScreenHandlers();
|
|
|
586
586
|
|
|
587
587
|
/***/ }),
|
|
588
588
|
|
|
589
|
-
/***/
|
|
589
|
+
/***/ 242:
|
|
590
590
|
/***/ ((module, exports, __webpack_require__) => {
|
|
591
591
|
|
|
592
592
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -600,7 +600,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
600
600
|
(function (factory) {
|
|
601
601
|
if ( true ) {
|
|
602
602
|
// AMD. Register as an anonymous module.
|
|
603
|
-
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(
|
|
603
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(849)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
|
604
604
|
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
|
605
605
|
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
|
606
606
|
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
@@ -811,7 +811,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
811
811
|
|
|
812
812
|
/***/ }),
|
|
813
813
|
|
|
814
|
-
/***/
|
|
814
|
+
/***/ 849:
|
|
815
815
|
/***/ (function(module, exports) {
|
|
816
816
|
|
|
817
817
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -11784,7 +11784,7 @@ return jQuery;
|
|
|
11784
11784
|
|
|
11785
11785
|
/***/ }),
|
|
11786
11786
|
|
|
11787
|
-
/***/
|
|
11787
|
+
/***/ 625:
|
|
11788
11788
|
/***/ ((module) => {
|
|
11789
11789
|
|
|
11790
11790
|
/**
|
|
@@ -16563,7 +16563,7 @@ if (true) {
|
|
|
16563
16563
|
|
|
16564
16564
|
/***/ }),
|
|
16565
16565
|
|
|
16566
|
-
/***/
|
|
16566
|
+
/***/ 494:
|
|
16567
16567
|
/***/ (function(__unused_webpack_module, exports) {
|
|
16568
16568
|
|
|
16569
16569
|
|
|
@@ -19808,7 +19808,7 @@ if (true) {
|
|
|
19808
19808
|
|
|
19809
19809
|
/***/ }),
|
|
19810
19810
|
|
|
19811
|
-
/***/
|
|
19811
|
+
/***/ 339:
|
|
19812
19812
|
/***/ (function(module, exports) {
|
|
19813
19813
|
|
|
19814
19814
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*
|
|
@@ -21227,7 +21227,7 @@ function Generator ({ style = "TIDY", precision = 7, doublePrecision = 15 })
|
|
|
21227
21227
|
this .units = true;
|
|
21228
21228
|
this .unitCategories = [ ];
|
|
21229
21229
|
|
|
21230
|
-
this .names .set (null, new Set ());
|
|
21230
|
+
this .names .set (null, Object .assign (new Set (), { index: 0 }));
|
|
21231
21231
|
}
|
|
21232
21232
|
|
|
21233
21233
|
Generator .prototype =
|
|
@@ -22292,7 +22292,7 @@ x_ite_Namespace.set ("x_ite/Base/Events", Events_default_);
|
|
|
22292
22292
|
|
|
22293
22293
|
|
|
22294
22294
|
|
|
22295
|
-
const _browser = Symbol .for ("X3DEventObject.browser");
|
|
22295
|
+
const _browser = Symbol .for ("X_ITE.X3DEventObject.browser");
|
|
22296
22296
|
|
|
22297
22297
|
function X3DEventObject (browser)
|
|
22298
22298
|
{
|
|
@@ -22310,6 +22310,7 @@ X3DEventObject .prototype = Object .assign (Object .create (Base_X3DChildObject.
|
|
|
22310
22310
|
},
|
|
22311
22311
|
getExtendedEventHandling: function ()
|
|
22312
22312
|
{
|
|
22313
|
+
// Whether initializeOnly field are treated like inputOnly and inputOutput fields.
|
|
22313
22314
|
return true;
|
|
22314
22315
|
},
|
|
22315
22316
|
addEvent: function (field)
|
|
@@ -22335,7 +22336,7 @@ X3DEventObject .prototype = Object .assign (Object .create (Base_X3DChildObject.
|
|
|
22335
22336
|
if (this .isTainted ())
|
|
22336
22337
|
return;
|
|
22337
22338
|
|
|
22338
|
-
if (field .isInput () || (this .getExtendedEventHandling () &&
|
|
22339
|
+
if (field .isInput () || (this .getExtendedEventHandling () && field .isInitializable ()))
|
|
22339
22340
|
{
|
|
22340
22341
|
this .addNodeEvent ();
|
|
22341
22342
|
}
|
|
@@ -22968,7 +22969,7 @@ const
|
|
|
22968
22969
|
_inputRoutes = Symbol (),
|
|
22969
22970
|
_outputRoutes = Symbol (),
|
|
22970
22971
|
_routeCallbacks = Symbol (),
|
|
22971
|
-
_uniformLocation = Symbol .for ("X3DField.uniformLocation");
|
|
22972
|
+
_uniformLocation = Symbol .for ("X_ITE.X3DField.uniformLocation");
|
|
22972
22973
|
|
|
22973
22974
|
function X3DField (value)
|
|
22974
22975
|
{
|
|
@@ -22983,7 +22984,6 @@ X3DField .prototype = Object .assign (Object .create (Base_X3DChildObject.protot
|
|
|
22983
22984
|
[_value]: null,
|
|
22984
22985
|
[_accessType]: Base_X3DConstants.initializeOnly,
|
|
22985
22986
|
[_unit]: null,
|
|
22986
|
-
[_uniformLocation]: null,
|
|
22987
22987
|
[_references]: new Set (),
|
|
22988
22988
|
[_referencesCallbacks]: new Map (),
|
|
22989
22989
|
[_fieldInterests]: new Set (),
|
|
@@ -22991,6 +22991,7 @@ X3DField .prototype = Object .assign (Object .create (Base_X3DChildObject.protot
|
|
|
22991
22991
|
[_inputRoutes]: new Set (),
|
|
22992
22992
|
[_outputRoutes]: new Set (),
|
|
22993
22993
|
[_routeCallbacks]: new Map (),
|
|
22994
|
+
[_uniformLocation]: null,
|
|
22994
22995
|
create: function ()
|
|
22995
22996
|
{
|
|
22996
22997
|
return new (this .constructor) ();
|
|
@@ -23684,7 +23685,7 @@ const Algorithm_default_ = class Algorithm
|
|
|
23684
23685
|
|
|
23685
23686
|
return first;
|
|
23686
23687
|
}
|
|
23687
|
-
}
|
|
23688
|
+
}
|
|
23688
23689
|
;
|
|
23689
23690
|
|
|
23690
23691
|
x_ite_Namespace.set ("standard/Math/Algorithm", Algorithm_default_);
|
|
@@ -25333,9 +25334,9 @@ function SFVecPrototypeTemplate (TypeName, Type, ValueType, double)
|
|
|
25333
25334
|
toJSONStreamValue: function (generator)
|
|
25334
25335
|
{
|
|
25335
25336
|
const
|
|
25336
|
-
value
|
|
25337
|
-
last
|
|
25338
|
-
category
|
|
25337
|
+
value = this .getValue (),
|
|
25338
|
+
last = value .length - 1,
|
|
25339
|
+
category = generator .Unit (this .getUnit ());
|
|
25339
25340
|
|
|
25340
25341
|
for (let i = 0; i < last; ++ i)
|
|
25341
25342
|
{
|
|
@@ -28102,6 +28103,7 @@ x_ite_Namespace.set ("standard/Math/Numbers/Vector4", Vector4_default_);
|
|
|
28102
28103
|
|
|
28103
28104
|
|
|
28104
28105
|
|
|
28106
|
+
|
|
28105
28107
|
function Quaternion (x, y, z, w)
|
|
28106
28108
|
{
|
|
28107
28109
|
this .x = x;
|
|
@@ -28191,7 +28193,7 @@ Quaternion .prototype =
|
|
|
28191
28193
|
|
|
28192
28194
|
return this;
|
|
28193
28195
|
},
|
|
28194
|
-
getMatrix: function (matrix)
|
|
28196
|
+
getMatrix: function (matrix = new Numbers_Matrix3 ())
|
|
28195
28197
|
{
|
|
28196
28198
|
const { x, y, z, w } = this;
|
|
28197
28199
|
|
|
@@ -28222,11 +28224,11 @@ Quaternion .prototype =
|
|
|
28222
28224
|
},
|
|
28223
28225
|
isReal: function ()
|
|
28224
28226
|
{
|
|
28225
|
-
return !
|
|
28227
|
+
return !(this .x || this .y || this .z);
|
|
28226
28228
|
},
|
|
28227
28229
|
isImag: function ()
|
|
28228
28230
|
{
|
|
28229
|
-
return !
|
|
28231
|
+
return !this .w;
|
|
28230
28232
|
},
|
|
28231
28233
|
equals: function (quat)
|
|
28232
28234
|
{
|
|
@@ -28658,6 +28660,7 @@ x_ite_Namespace.set ("standard/Math/Numbers/Quaternion", Quaternion_default_);
|
|
|
28658
28660
|
|
|
28659
28661
|
|
|
28660
28662
|
|
|
28663
|
+
|
|
28661
28664
|
const
|
|
28662
28665
|
_x = Symbol (),
|
|
28663
28666
|
_y = Symbol (),
|
|
@@ -28888,7 +28891,7 @@ Rotation4 .prototype =
|
|
|
28888
28891
|
{
|
|
28889
28892
|
this .set (vector .x, vector .y, vector .z, this [_angle]);
|
|
28890
28893
|
},
|
|
28891
|
-
getAxis: function (axis)
|
|
28894
|
+
getAxis: function (axis = new Numbers_Vector3 (0, 0, 0))
|
|
28892
28895
|
{
|
|
28893
28896
|
return axis .set (this [_x], this [_y], this [_z]);
|
|
28894
28897
|
},
|
|
@@ -28898,7 +28901,7 @@ Rotation4 .prototype =
|
|
|
28898
28901
|
this .update ();
|
|
28899
28902
|
return this;
|
|
28900
28903
|
},
|
|
28901
|
-
getQuaternion: function (quaternion)
|
|
28904
|
+
getQuaternion: function (quaternion = new Numbers_Quaternion (0, 0, 0, 1))
|
|
28902
28905
|
{
|
|
28903
28906
|
return quaternion .assign (this [_quaternion]);
|
|
28904
28907
|
},
|
|
@@ -28908,7 +28911,7 @@ Rotation4 .prototype =
|
|
|
28908
28911
|
this .update ();
|
|
28909
28912
|
return this;
|
|
28910
28913
|
},
|
|
28911
|
-
getMatrix: function (matrix)
|
|
28914
|
+
getMatrix: function (matrix = new Numbers_Matrix3 ())
|
|
28912
28915
|
{
|
|
28913
28916
|
return this [_quaternion] .getMatrix (matrix);
|
|
28914
28917
|
},
|
|
@@ -30235,7 +30238,8 @@ const SFNode_handler =
|
|
|
30235
30238
|
return value;
|
|
30236
30239
|
|
|
30237
30240
|
const
|
|
30238
|
-
|
|
30241
|
+
node = target .getValue (),
|
|
30242
|
+
field = node .getField (key),
|
|
30239
30243
|
accessType = field .getAccessType ();
|
|
30240
30244
|
|
|
30241
30245
|
// Specification conform would be: accessType & X3DConstants .outputOnly.
|
|
@@ -30261,13 +30265,14 @@ const SFNode_handler =
|
|
|
30261
30265
|
try
|
|
30262
30266
|
{
|
|
30263
30267
|
const
|
|
30264
|
-
|
|
30268
|
+
node = target .getValue (),
|
|
30269
|
+
field = node .getField (key),
|
|
30265
30270
|
accessType = field .getAccessType ();
|
|
30266
30271
|
|
|
30267
30272
|
if (accessType !== Base_X3DConstants.outputOnly)
|
|
30268
30273
|
field .setValue (value);
|
|
30269
30274
|
|
|
30270
|
-
|
|
30275
|
+
return true;
|
|
30271
30276
|
}
|
|
30272
30277
|
catch (error)
|
|
30273
30278
|
{
|
|
@@ -30706,8 +30711,6 @@ x_ite_Namespace.set ("x_ite/Fields/SFNode", SFNode_default_);
|
|
|
30706
30711
|
|
|
30707
30712
|
|
|
30708
30713
|
|
|
30709
|
-
|
|
30710
|
-
|
|
30711
30714
|
const
|
|
30712
30715
|
SFVec3f = Fields_SFVec3.SFVec3f,
|
|
30713
30716
|
SFMatrix3f = Fields_SFMatrix3.SFMatrix3f;
|
|
@@ -30781,7 +30784,7 @@ SFRotation .prototype = Object .assign (Object .create (Base_X3DField.prototype)
|
|
|
30781
30784
|
},
|
|
30782
30785
|
getAxis: function ()
|
|
30783
30786
|
{
|
|
30784
|
-
return new SFVec3f (this .getValue () .getAxis (
|
|
30787
|
+
return new SFVec3f (this .getValue () .getAxis ());
|
|
30785
30788
|
},
|
|
30786
30789
|
setMatrix: function (matrix)
|
|
30787
30790
|
{
|
|
@@ -30790,7 +30793,7 @@ SFRotation .prototype = Object .assign (Object .create (Base_X3DField.prototype)
|
|
|
30790
30793
|
},
|
|
30791
30794
|
getMatrix: function ()
|
|
30792
30795
|
{
|
|
30793
|
-
return new SFMatrix3f (this .getValue () .getMatrix (
|
|
30796
|
+
return new SFMatrix3f (this .getValue () .getMatrix ());
|
|
30794
30797
|
},
|
|
30795
30798
|
inverse: function ()
|
|
30796
30799
|
{
|
|
@@ -34375,7 +34378,7 @@ const
|
|
|
34375
34378
|
_childObjects = Symbol (),
|
|
34376
34379
|
_initialized = Symbol (),
|
|
34377
34380
|
_live = Symbol (),
|
|
34378
|
-
_set_live__ = Symbol (
|
|
34381
|
+
_set_live__ = Symbol (),
|
|
34379
34382
|
X3DBaseNode_cloneCount = Symbol ();
|
|
34380
34383
|
|
|
34381
34384
|
function X3DBaseNode (executionContext)
|
|
@@ -34964,7 +34967,7 @@ x_ite_Namespace.set ("x_ite/Base/X3DBaseNode", X3DBaseNode_default_);
|
|
|
34964
34967
|
*
|
|
34965
34968
|
******************************************************************************/
|
|
34966
34969
|
|
|
34967
|
-
const VERSION_default_ = "8.6.
|
|
34970
|
+
const VERSION_default_ = "8.6.19";
|
|
34968
34971
|
;
|
|
34969
34972
|
|
|
34970
34973
|
x_ite_Namespace.set ("x_ite/Browser/VERSION", VERSION_default_);
|
|
@@ -35254,7 +35257,7 @@ const Context =
|
|
|
35254
35257
|
}
|
|
35255
35258
|
};
|
|
35256
35259
|
|
|
35257
|
-
setTimeout (check
|
|
35260
|
+
setTimeout (check);
|
|
35258
35261
|
});
|
|
35259
35262
|
},
|
|
35260
35263
|
getBufferSubDataAsync: async function (target, buffer, srcByteOffset, dstBuffer, /* optional */ dstOffset, /* optional */ length)
|
|
@@ -35868,7 +35871,7 @@ const gettext_default_ = gettext;
|
|
|
35868
35871
|
x_ite_Namespace.set ("locale/gettext", gettext_default_);
|
|
35869
35872
|
/* harmony default export */ const locale_gettext = (gettext_default_);
|
|
35870
35873
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/BrowserTimings.js
|
|
35871
|
-
/* provided dependency */ var $ = __webpack_require__(
|
|
35874
|
+
/* provided dependency */ var $ = __webpack_require__(849);
|
|
35872
35875
|
/*******************************************************************************
|
|
35873
35876
|
*
|
|
35874
35877
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -36286,7 +36289,7 @@ const TextureQuality_default_ = TextureQuality;
|
|
|
36286
36289
|
x_ite_Namespace.set ("x_ite/Browser/Core/TextureQuality", TextureQuality_default_);
|
|
36287
36290
|
/* harmony default export */ const Core_TextureQuality = (TextureQuality_default_);
|
|
36288
36291
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/BrowserOptions.js
|
|
36289
|
-
/* provided dependency */ var BrowserOptions_$ = __webpack_require__(
|
|
36292
|
+
/* provided dependency */ var BrowserOptions_$ = __webpack_require__(849);
|
|
36290
36293
|
/*******************************************************************************
|
|
36291
36294
|
*
|
|
36292
36295
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -36822,7 +36825,7 @@ const RenderingProperties_default_ = RenderingProperties;
|
|
|
36822
36825
|
x_ite_Namespace.set ("x_ite/Browser/Core/RenderingProperties", RenderingProperties_default_);
|
|
36823
36826
|
/* harmony default export */ const Core_RenderingProperties = (RenderingProperties_default_);
|
|
36824
36827
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/Notification.js
|
|
36825
|
-
/* provided dependency */ var Notification_$ = __webpack_require__(
|
|
36828
|
+
/* provided dependency */ var Notification_$ = __webpack_require__(849);
|
|
36826
36829
|
/*******************************************************************************
|
|
36827
36830
|
*
|
|
36828
36831
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -36944,8 +36947,8 @@ const Notification_default_ = Notification;
|
|
|
36944
36947
|
x_ite_Namespace.set ("x_ite/Browser/Core/Notification", Notification_default_);
|
|
36945
36948
|
/* harmony default export */ const Core_Notification = (Notification_default_);
|
|
36946
36949
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/ContextMenu.js
|
|
36947
|
-
/* provided dependency */ var jquery_fullscreen = __webpack_require__(
|
|
36948
|
-
/* provided dependency */ var ContextMenu_$ = __webpack_require__(
|
|
36950
|
+
/* provided dependency */ var jquery_fullscreen = __webpack_require__(865);
|
|
36951
|
+
/* provided dependency */ var ContextMenu_$ = __webpack_require__(849);
|
|
36949
36952
|
/*******************************************************************************
|
|
36950
36953
|
*
|
|
36951
36954
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -41976,7 +41979,7 @@ const X3DUrlObject_default_ = X3DUrlObject;
|
|
|
41976
41979
|
x_ite_Namespace.set ("x_ite/Components/Networking/X3DUrlObject", X3DUrlObject_default_);
|
|
41977
41980
|
/* harmony default export */ const Networking_X3DUrlObject = (X3DUrlObject_default_);
|
|
41978
41981
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/X3DParser.js
|
|
41979
|
-
/* provided dependency */ var X3DParser_$ = __webpack_require__(
|
|
41982
|
+
/* provided dependency */ var X3DParser_$ = __webpack_require__(849);
|
|
41980
41983
|
/*******************************************************************************
|
|
41981
41984
|
*
|
|
41982
41985
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -42033,14 +42036,14 @@ function X3DParser (scene)
|
|
|
42033
42036
|
|
|
42034
42037
|
X3DParser .prototype = {
|
|
42035
42038
|
constructor: X3DParser,
|
|
42036
|
-
getScene: function ()
|
|
42037
|
-
{
|
|
42038
|
-
return this .scene;
|
|
42039
|
-
},
|
|
42040
42039
|
getBrowser: function ()
|
|
42041
42040
|
{
|
|
42042
42041
|
return this .scene .getBrowser ();
|
|
42043
42042
|
},
|
|
42043
|
+
getScene: function ()
|
|
42044
|
+
{
|
|
42045
|
+
return this .scene;
|
|
42046
|
+
},
|
|
42044
42047
|
getExecutionContext: function ()
|
|
42045
42048
|
{
|
|
42046
42049
|
return this .executionContexts .at (-1);
|
|
@@ -45158,7 +45161,7 @@ const VRMLParser_default_ = VRMLParser;
|
|
|
45158
45161
|
x_ite_Namespace.set ("x_ite/Parser/VRMLParser", VRMLParser_default_);
|
|
45159
45162
|
/* harmony default export */ const Parser_VRMLParser = (VRMLParser_default_);
|
|
45160
45163
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/XMLParser.js
|
|
45161
|
-
/* provided dependency */ var XMLParser_$ = __webpack_require__(
|
|
45164
|
+
/* provided dependency */ var XMLParser_$ = __webpack_require__(849);
|
|
45162
45165
|
/*******************************************************************************
|
|
45163
45166
|
*
|
|
45164
45167
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -45307,18 +45310,16 @@ XMLParser .prototype = Object .assign (Object .create (Parser_X3DParser.prototyp
|
|
|
45307
45310
|
{
|
|
45308
45311
|
if (this .success)
|
|
45309
45312
|
{
|
|
45310
|
-
this .loadComponents () .then (
|
|
45313
|
+
this .loadComponents () .then (() =>
|
|
45311
45314
|
{
|
|
45312
45315
|
this .childrenElements (xmlElement);
|
|
45313
45316
|
this .success (this .getScene ());
|
|
45314
|
-
}
|
|
45315
|
-
.
|
|
45316
|
-
.catch (function (error)
|
|
45317
|
+
})
|
|
45318
|
+
.catch ((error) =>
|
|
45317
45319
|
{
|
|
45318
45320
|
if (this .error)
|
|
45319
45321
|
this .error (error);
|
|
45320
|
-
}
|
|
45321
|
-
.bind (this));
|
|
45322
|
+
});
|
|
45322
45323
|
}
|
|
45323
45324
|
else
|
|
45324
45325
|
{
|
|
@@ -45338,18 +45339,16 @@ XMLParser .prototype = Object .assign (Object .create (Parser_X3DParser.prototyp
|
|
|
45338
45339
|
{
|
|
45339
45340
|
if (this .success)
|
|
45340
45341
|
{
|
|
45341
|
-
this .loadComponents () .then (
|
|
45342
|
+
this .loadComponents () .then (() =>
|
|
45342
45343
|
{
|
|
45343
45344
|
this .sceneElement (xmlElement);
|
|
45344
45345
|
this .success (this .getScene ());
|
|
45345
|
-
}
|
|
45346
|
-
.
|
|
45347
|
-
.catch (function (error)
|
|
45346
|
+
})
|
|
45347
|
+
.catch ((error) =>
|
|
45348
45348
|
{
|
|
45349
45349
|
if (this .error)
|
|
45350
45350
|
this .error (error);
|
|
45351
|
-
}
|
|
45352
|
-
.bind (this));
|
|
45351
|
+
});
|
|
45353
45352
|
}
|
|
45354
45353
|
else
|
|
45355
45354
|
{
|
|
@@ -45362,18 +45361,16 @@ XMLParser .prototype = Object .assign (Object .create (Parser_X3DParser.prototyp
|
|
|
45362
45361
|
{
|
|
45363
45362
|
if (this .success)
|
|
45364
45363
|
{
|
|
45365
|
-
this .loadComponents () .then (
|
|
45364
|
+
this .loadComponents () .then (() =>
|
|
45366
45365
|
{
|
|
45367
45366
|
this .childrenElements (xmlElement);
|
|
45368
45367
|
this .success (this .getScene ());
|
|
45369
|
-
}
|
|
45370
|
-
.
|
|
45371
|
-
.catch (function (error)
|
|
45368
|
+
})
|
|
45369
|
+
.catch ((error) =>
|
|
45372
45370
|
{
|
|
45373
45371
|
if (this .error)
|
|
45374
45372
|
this .error (error);
|
|
45375
|
-
}
|
|
45376
|
-
.bind (this));
|
|
45373
|
+
});
|
|
45377
45374
|
}
|
|
45378
45375
|
else
|
|
45379
45376
|
{
|
|
@@ -45996,7 +45993,7 @@ XMLParser .prototype = Object .assign (Object .create (Parser_X3DParser.prototyp
|
|
|
45996
45993
|
{
|
|
45997
45994
|
// Add elements and cdata.
|
|
45998
45995
|
if (childNode .nodeType === 1 || childNode .nodeType === 4)
|
|
45999
|
-
|
|
45996
|
+
element .appendChild (childNode);
|
|
46000
45997
|
}
|
|
46001
45998
|
},
|
|
46002
45999
|
routeElement: function (xmlElement)
|
|
@@ -47201,7 +47198,7 @@ const URLs_default_ = URLs;
|
|
|
47201
47198
|
x_ite_Namespace.set ("x_ite/Browser/Networking/URLs", URLs_default_);
|
|
47202
47199
|
/* harmony default export */ const Networking_URLs = (URLs_default_);
|
|
47203
47200
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/GLTF2Parser.js
|
|
47204
|
-
/* provided dependency */ var GLTF2Parser_$ = __webpack_require__(
|
|
47201
|
+
/* provided dependency */ var GLTF2Parser_$ = __webpack_require__(849);
|
|
47205
47202
|
/*******************************************************************************
|
|
47206
47203
|
*
|
|
47207
47204
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -49667,7 +49664,7 @@ const GLTF2Parser_default_ = GLTF2Parser;
|
|
|
49667
49664
|
x_ite_Namespace.set ("x_ite/Parser/GLTF2Parser", GLTF2Parser_default_);
|
|
49668
49665
|
/* harmony default export */ const Parser_GLTF2Parser = (GLTF2Parser_default_);
|
|
49669
49666
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/GLB2Parser.js
|
|
49670
|
-
/* provided dependency */ var GLB2Parser_$ = __webpack_require__(
|
|
49667
|
+
/* provided dependency */ var GLB2Parser_$ = __webpack_require__(849);
|
|
49671
49668
|
/*******************************************************************************
|
|
49672
49669
|
*
|
|
49673
49670
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -49820,7 +49817,7 @@ const GLB2Parser_default_ = GLB2Parser;
|
|
|
49820
49817
|
x_ite_Namespace.set ("x_ite/Parser/GLB2Parser", GLB2Parser_default_);
|
|
49821
49818
|
/* harmony default export */ const Parser_GLB2Parser = (GLB2Parser_default_);
|
|
49822
49819
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/OBJParser.js
|
|
49823
|
-
/* provided dependency */ var OBJParser_$ = __webpack_require__(
|
|
49820
|
+
/* provided dependency */ var OBJParser_$ = __webpack_require__(849);
|
|
49824
49821
|
/*******************************************************************************
|
|
49825
49822
|
*
|
|
49826
49823
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -51764,7 +51761,7 @@ x_ite_Namespace.set ("standard/Math/Numbers/Complex", Complex_default_);
|
|
|
51764
51761
|
|
|
51765
51762
|
|
|
51766
51763
|
|
|
51767
|
-
function Box2 (size, center)
|
|
51764
|
+
function Box2 (/* size, center */)
|
|
51768
51765
|
{
|
|
51769
51766
|
this .matrix = new Numbers_Matrix3 ();
|
|
51770
51767
|
|
|
@@ -52310,8 +52307,8 @@ const MatrixStack_default_ = MatrixStack;
|
|
|
52310
52307
|
x_ite_Namespace.set ("standard/Math/Utility/MatrixStack", MatrixStack_default_);
|
|
52311
52308
|
/* harmony default export */ const Utility_MatrixStack = (MatrixStack_default_);
|
|
52312
52309
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/SVGParser.js
|
|
52313
|
-
/* provided dependency */ var SVGParser_$ = __webpack_require__(
|
|
52314
|
-
/* provided dependency */ var libtess = __webpack_require__(
|
|
52310
|
+
/* provided dependency */ var SVGParser_$ = __webpack_require__(849);
|
|
52311
|
+
/* provided dependency */ var libtess = __webpack_require__(625);
|
|
52315
52312
|
/*******************************************************************************
|
|
52316
52313
|
*
|
|
52317
52314
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -55080,7 +55077,7 @@ const SVGParser_default_ = SVGParser;
|
|
|
55080
55077
|
x_ite_Namespace.set ("x_ite/Parser/SVGParser", SVGParser_default_);
|
|
55081
55078
|
/* harmony default export */ const Parser_SVGParser = (SVGParser_default_);
|
|
55082
55079
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/GoldenGate.js
|
|
55083
|
-
/* provided dependency */ var GoldenGate_$ = __webpack_require__(
|
|
55080
|
+
/* provided dependency */ var GoldenGate_$ = __webpack_require__(849);
|
|
55084
55081
|
/*******************************************************************************
|
|
55085
55082
|
*
|
|
55086
55083
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -55409,7 +55406,7 @@ const Plane3_default_ = Plane3;
|
|
|
55409
55406
|
x_ite_Namespace.set ("standard/Math/Geometry/Plane3", Plane3_default_);
|
|
55410
55407
|
/* harmony default export */ const Geometry_Plane3 = (Plane3_default_);
|
|
55411
55408
|
;// CONCATENATED MODULE: ./src/standard/Math/Geometry/Triangle3.js
|
|
55412
|
-
/* provided dependency */ var Triangle3_libtess = __webpack_require__(
|
|
55409
|
+
/* provided dependency */ var Triangle3_libtess = __webpack_require__(625);
|
|
55413
55410
|
/*******************************************************************************
|
|
55414
55411
|
*
|
|
55415
55412
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -56484,26 +56481,28 @@ MergeSort .prototype =
|
|
|
56484
56481
|
},
|
|
56485
56482
|
merge: function (lo, m, hi)
|
|
56486
56483
|
{
|
|
56484
|
+
const { array, auxiliary, compare } = this;
|
|
56485
|
+
|
|
56487
56486
|
let i, j, k;
|
|
56488
56487
|
|
|
56489
56488
|
i = 0, j = lo;
|
|
56490
56489
|
// Copy first half of array a to auxiliary array b.
|
|
56491
56490
|
while (j <= m)
|
|
56492
|
-
|
|
56491
|
+
auxiliary [i++] = array [j++];
|
|
56493
56492
|
|
|
56494
56493
|
i = 0; k = lo;
|
|
56495
56494
|
// Copy back next-greatest element at each time.
|
|
56496
56495
|
while (k < j && j <= hi)
|
|
56497
56496
|
{
|
|
56498
|
-
if (
|
|
56499
|
-
|
|
56497
|
+
if (compare (array [j], auxiliary [i]))
|
|
56498
|
+
array [k++] = array [j++];
|
|
56500
56499
|
else
|
|
56501
|
-
|
|
56500
|
+
array [k++] = auxiliary [i++];
|
|
56502
56501
|
}
|
|
56503
56502
|
|
|
56504
56503
|
// Copy back remaining elements of first half (if any).
|
|
56505
56504
|
while (k < j)
|
|
56506
|
-
|
|
56505
|
+
array [k++] = auxiliary [i++];
|
|
56507
56506
|
}
|
|
56508
56507
|
};
|
|
56509
56508
|
|
|
@@ -56696,7 +56695,7 @@ x_ite_Namespace.set ("standard/Math/Geometry/Camera", Camera_default_);
|
|
|
56696
56695
|
|
|
56697
56696
|
|
|
56698
56697
|
|
|
56699
|
-
function Box3 (size, center)
|
|
56698
|
+
function Box3 (/* size, center */)
|
|
56700
56699
|
{
|
|
56701
56700
|
this .matrix = new Numbers_Matrix4 ();
|
|
56702
56701
|
|
|
@@ -62713,7 +62712,7 @@ const X3DTexture2DNode_default_ = X3DTexture2DNode;
|
|
|
62713
62712
|
x_ite_Namespace.set ("x_ite/Components/Texturing/X3DTexture2DNode", X3DTexture2DNode_default_);
|
|
62714
62713
|
/* harmony default export */ const Texturing_X3DTexture2DNode = (X3DTexture2DNode_default_);
|
|
62715
62714
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/ImageTexture.js
|
|
62716
|
-
/* provided dependency */ var ImageTexture_$ = __webpack_require__(
|
|
62715
|
+
/* provided dependency */ var ImageTexture_$ = __webpack_require__(849);
|
|
62717
62716
|
/*******************************************************************************
|
|
62718
62717
|
*
|
|
62719
62718
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -67053,7 +67052,7 @@ const X3DWorld_default_ = X3DWorld;
|
|
|
67053
67052
|
x_ite_Namespace.set ("x_ite/Execution/X3DWorld", X3DWorld_default_);
|
|
67054
67053
|
/* harmony default export */ const Execution_X3DWorld = (X3DWorld_default_);
|
|
67055
67054
|
;// CONCATENATED MODULE: ./src/x_ite/InputOutput/FileLoader.js
|
|
67056
|
-
/* provided dependency */ var FileLoader_$ = __webpack_require__(
|
|
67055
|
+
/* provided dependency */ var FileLoader_$ = __webpack_require__(849);
|
|
67057
67056
|
/*******************************************************************************
|
|
67058
67057
|
*
|
|
67059
67058
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -67111,7 +67110,7 @@ const
|
|
|
67111
67110
|
ECMAScript = /^\s*(?:vrmlscript|javascript|ecmascript)\:(.*)$/s,
|
|
67112
67111
|
dataURL = /^data:(.*?)(?:;charset=(.*?))?(?:;(base64))?,(.*)$/s;
|
|
67113
67112
|
|
|
67114
|
-
const foreignExtensions = new RegExp ("\.(?:html|xhtml)$");
|
|
67113
|
+
const foreignExtensions = new RegExp ("\.(?:html|htm|xhtml)$");
|
|
67115
67114
|
|
|
67116
67115
|
const foreign = {
|
|
67117
67116
|
"text/html": true,
|
|
@@ -67223,7 +67222,7 @@ FileLoader .prototype = Object .assign (Object .create (Base_X3DObject.prototype
|
|
|
67223
67222
|
|
|
67224
67223
|
// Wait for instances to be created.
|
|
67225
67224
|
|
|
67226
|
-
setTimeout (
|
|
67225
|
+
setTimeout (() =>
|
|
67227
67226
|
{
|
|
67228
67227
|
try
|
|
67229
67228
|
{
|
|
@@ -67236,8 +67235,7 @@ FileLoader .prototype = Object .assign (Object .create (Base_X3DObject.prototype
|
|
|
67236
67235
|
else
|
|
67237
67236
|
throw exception;
|
|
67238
67237
|
}
|
|
67239
|
-
}
|
|
67240
|
-
0);
|
|
67238
|
+
});
|
|
67241
67239
|
|
|
67242
67240
|
if (DEBUG)
|
|
67243
67241
|
{
|
|
@@ -69255,7 +69253,7 @@ const X3DExecutionContext_default_ = X3DExecutionContext;
|
|
|
69255
69253
|
x_ite_Namespace.set ("x_ite/Execution/X3DExecutionContext", X3DExecutionContext_default_);
|
|
69256
69254
|
/* harmony default export */ const Execution_X3DExecutionContext = (X3DExecutionContext_default_);
|
|
69257
69255
|
;// CONCATENATED MODULE: ./src/x_ite/Configuration/ComponentInfo.js
|
|
69258
|
-
/* provided dependency */ var ComponentInfo_$ = __webpack_require__(
|
|
69256
|
+
/* provided dependency */ var ComponentInfo_$ = __webpack_require__(849);
|
|
69259
69257
|
/*******************************************************************************
|
|
69260
69258
|
*
|
|
69261
69259
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -70994,7 +70992,7 @@ x_ite_Namespace.set ("x_ite/Execution/X3DScene", X3DScene_default_);
|
|
|
70994
70992
|
|
|
70995
70993
|
|
|
70996
70994
|
const
|
|
70997
|
-
Scene_browser = Symbol .for ("X3DEventObject.browser"),
|
|
70995
|
+
Scene_browser = Symbol .for ("X_ITE.X3DEventObject.browser"),
|
|
70998
70996
|
_loadingObjects = Symbol ();
|
|
70999
70997
|
|
|
71000
70998
|
function Scene (browser)
|
|
@@ -71230,7 +71228,7 @@ const DataStorage_default_ = DataStorage;
|
|
|
71230
71228
|
x_ite_Namespace.set ("standard/Utility/DataStorage", DataStorage_default_);
|
|
71231
71229
|
/* harmony default export */ const Utility_DataStorage = (DataStorage_default_);
|
|
71232
71230
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/X3DCoreContext.js
|
|
71233
|
-
/* provided dependency */ var X3DCoreContext_$ = __webpack_require__(
|
|
71231
|
+
/* provided dependency */ var X3DCoreContext_$ = __webpack_require__(849);
|
|
71234
71232
|
/*******************************************************************************
|
|
71235
71233
|
*
|
|
71236
71234
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -77287,8 +77285,8 @@ const OrientationChaser_default_ = OrientationChaser;
|
|
|
77287
77285
|
x_ite_Namespace.set ("x_ite/Components/Followers/OrientationChaser", OrientationChaser_default_);
|
|
77288
77286
|
/* harmony default export */ const Followers_OrientationChaser = (OrientationChaser_default_);
|
|
77289
77287
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/ExamineViewer.js
|
|
77290
|
-
/* provided dependency */ var jquery_mousewheel = __webpack_require__(
|
|
77291
|
-
/* provided dependency */ var ExamineViewer_$ = __webpack_require__(
|
|
77288
|
+
/* provided dependency */ var jquery_mousewheel = __webpack_require__(242);
|
|
77289
|
+
/* provided dependency */ var ExamineViewer_$ = __webpack_require__(849);
|
|
77292
77290
|
/*******************************************************************************
|
|
77293
77291
|
*
|
|
77294
77292
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -77740,7 +77738,7 @@ ExamineViewer .prototype = Object .assign (Object .create (Navigation_X3DViewer.
|
|
|
77740
77738
|
{
|
|
77741
77739
|
this .tapedTwice = true;
|
|
77742
77740
|
|
|
77743
|
-
setTimeout (
|
|
77741
|
+
setTimeout (() => this .tapedTwice = false, 300);
|
|
77744
77742
|
}
|
|
77745
77743
|
|
|
77746
77744
|
break;
|
|
@@ -78149,8 +78147,8 @@ const ExamineViewer_default_ = ExamineViewer;
|
|
|
78149
78147
|
x_ite_Namespace.set ("x_ite/Browser/Navigation/ExamineViewer", ExamineViewer_default_);
|
|
78150
78148
|
/* harmony default export */ const Navigation_ExamineViewer = (ExamineViewer_default_);
|
|
78151
78149
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/X3DFlyViewer.js
|
|
78152
|
-
/* provided dependency */ var X3DFlyViewer_jquery_mousewheel = __webpack_require__(
|
|
78153
|
-
/* provided dependency */ var X3DFlyViewer_$ = __webpack_require__(
|
|
78150
|
+
/* provided dependency */ var X3DFlyViewer_jquery_mousewheel = __webpack_require__(242);
|
|
78151
|
+
/* provided dependency */ var X3DFlyViewer_$ = __webpack_require__(849);
|
|
78154
78152
|
/*******************************************************************************
|
|
78155
78153
|
*
|
|
78156
78154
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -79098,8 +79096,8 @@ const FlyViewer_default_ = FlyViewer;
|
|
|
79098
79096
|
x_ite_Namespace.set ("x_ite/Browser/Navigation/FlyViewer", FlyViewer_default_);
|
|
79099
79097
|
/* harmony default export */ const Navigation_FlyViewer = (FlyViewer_default_);
|
|
79100
79098
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/PlaneViewer.js
|
|
79101
|
-
/* provided dependency */ var PlaneViewer_jquery_mousewheel = __webpack_require__(
|
|
79102
|
-
/* provided dependency */ var PlaneViewer_$ = __webpack_require__(
|
|
79099
|
+
/* provided dependency */ var PlaneViewer_jquery_mousewheel = __webpack_require__(242);
|
|
79100
|
+
/* provided dependency */ var PlaneViewer_$ = __webpack_require__(849);
|
|
79103
79101
|
/*******************************************************************************
|
|
79104
79102
|
*
|
|
79105
79103
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -79408,8 +79406,8 @@ const NoneViewer_default_ = NoneViewer;
|
|
|
79408
79406
|
x_ite_Namespace.set ("x_ite/Browser/Navigation/NoneViewer", NoneViewer_default_);
|
|
79409
79407
|
/* harmony default export */ const Navigation_NoneViewer = (NoneViewer_default_);
|
|
79410
79408
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/LookAtViewer.js
|
|
79411
|
-
/* provided dependency */ var LookAtViewer_jquery_mousewheel = __webpack_require__(
|
|
79412
|
-
/* provided dependency */ var LookAtViewer_$ = __webpack_require__(
|
|
79409
|
+
/* provided dependency */ var LookAtViewer_jquery_mousewheel = __webpack_require__(242);
|
|
79410
|
+
/* provided dependency */ var LookAtViewer_$ = __webpack_require__(849);
|
|
79413
79411
|
/*******************************************************************************
|
|
79414
79412
|
*
|
|
79415
79413
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -80772,7 +80770,6 @@ X3DNetworkingContext .prototype =
|
|
|
80772
80770
|
|
|
80773
80771
|
this [_defaultScene] .setPrivate (true);
|
|
80774
80772
|
this [_defaultScene] .setLive (true);
|
|
80775
|
-
this [_defaultScene] .setup ();
|
|
80776
80773
|
|
|
80777
80774
|
this .getDefaultScene = function () { return this [_defaultScene]; };
|
|
80778
80775
|
|
|
@@ -80780,6 +80777,10 @@ X3DNetworkingContext .prototype =
|
|
|
80780
80777
|
|
|
80781
80778
|
return this [_defaultScene];
|
|
80782
80779
|
},
|
|
80780
|
+
getBrowserLoading: function ()
|
|
80781
|
+
{
|
|
80782
|
+
return this [_loading];
|
|
80783
|
+
},
|
|
80783
80784
|
setBrowserLoading: function (value)
|
|
80784
80785
|
{
|
|
80785
80786
|
this [_loading] = value;
|
|
@@ -80807,13 +80808,9 @@ X3DNetworkingContext .prototype =
|
|
|
80807
80808
|
}
|
|
80808
80809
|
}
|
|
80809
80810
|
},
|
|
80810
|
-
|
|
80811
|
-
{
|
|
80812
|
-
return this [_loading];
|
|
80813
|
-
},
|
|
80814
|
-
getDisplayLoadCount: function ()
|
|
80811
|
+
getLoadingObjects: function ()
|
|
80815
80812
|
{
|
|
80816
|
-
return
|
|
80813
|
+
return this [X3DNetworkingContext_loadingObjects];
|
|
80817
80814
|
},
|
|
80818
80815
|
addLoadingObject: function (object)
|
|
80819
80816
|
{
|
|
@@ -80837,6 +80834,10 @@ X3DNetworkingContext .prototype =
|
|
|
80837
80834
|
this .setLoadCount (this [X3DNetworkingContext_loadingObjects] .size);
|
|
80838
80835
|
this .setCursor (this .getCursor ());
|
|
80839
80836
|
},
|
|
80837
|
+
getDisplayLoadCount: function ()
|
|
80838
|
+
{
|
|
80839
|
+
return [... this [X3DNetworkingContext_loadingObjects]] .reduce ((v, o) => v + !(o .isPrivate ?.() ?? true), 0);
|
|
80840
|
+
},
|
|
80840
80841
|
setLoadCount: function (value)
|
|
80841
80842
|
{
|
|
80842
80843
|
this ._loadCount = value;
|
|
@@ -81027,8 +81028,8 @@ const X3DPickingContext_default_ = X3DPickingContext;
|
|
|
81027
81028
|
x_ite_Namespace.set ("x_ite/Browser/Picking/X3DPickingContext", X3DPickingContext_default_);
|
|
81028
81029
|
/* harmony default export */ const Picking_X3DPickingContext = (X3DPickingContext_default_);
|
|
81029
81030
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/PointingDeviceSensor/PointingDevice.js
|
|
81030
|
-
/* provided dependency */ var PointingDevice_jquery_mousewheel = __webpack_require__(
|
|
81031
|
-
/* provided dependency */ var PointingDevice_$ = __webpack_require__(
|
|
81031
|
+
/* provided dependency */ var PointingDevice_jquery_mousewheel = __webpack_require__(242);
|
|
81032
|
+
/* provided dependency */ var PointingDevice_$ = __webpack_require__(849);
|
|
81032
81033
|
/*******************************************************************************
|
|
81033
81034
|
*
|
|
81034
81035
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -82066,8 +82067,8 @@ const MultiSampleFrameBuffer_default_ = MultiSampleFrameBuffer;
|
|
|
82066
82067
|
x_ite_Namespace.set ("x_ite/Rendering/MultiSampleFrameBuffer", MultiSampleFrameBuffer_default_);
|
|
82067
82068
|
/* harmony default export */ const Rendering_MultiSampleFrameBuffer = (MultiSampleFrameBuffer_default_);
|
|
82068
82069
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Rendering/X3DRenderingContext.js
|
|
82069
|
-
/* provided dependency */ var X3DRenderingContext_$ = __webpack_require__(
|
|
82070
|
-
/* provided dependency */ var ResizeSensor = __webpack_require__(
|
|
82070
|
+
/* provided dependency */ var X3DRenderingContext_$ = __webpack_require__(849);
|
|
82071
|
+
/* provided dependency */ var ResizeSensor = __webpack_require__(544);
|
|
82071
82072
|
/*******************************************************************************
|
|
82072
82073
|
*
|
|
82073
82074
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -87956,7 +87957,7 @@ const X3DShaderNode_default_ = X3DShaderNode;
|
|
|
87956
87957
|
x_ite_Namespace.set ("x_ite/Components/Shaders/X3DShaderNode", X3DShaderNode_default_);
|
|
87957
87958
|
/* harmony default export */ const Shaders_X3DShaderNode = (X3DShaderNode_default_);
|
|
87958
87959
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js
|
|
87959
|
-
/* provided dependency */ var X3DProgrammableShaderObject_$ = __webpack_require__(
|
|
87960
|
+
/* provided dependency */ var X3DProgrammableShaderObject_$ = __webpack_require__(849);
|
|
87960
87961
|
/*******************************************************************************
|
|
87961
87962
|
*
|
|
87962
87963
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -88008,7 +88009,7 @@ x_ite_Namespace.set ("x_ite/Components/Shaders/X3DShaderNode", X3DShaderNode_def
|
|
|
88008
88009
|
|
|
88009
88010
|
|
|
88010
88011
|
|
|
88011
|
-
const X3DProgrammableShaderObject_uniformLocation = Symbol .for ("X3DField.uniformLocation");
|
|
88012
|
+
const X3DProgrammableShaderObject_uniformLocation = Symbol .for ("X_ITE.X3DField.uniformLocation");
|
|
88012
88013
|
|
|
88013
88014
|
function X3DProgrammableShaderObject (executionContext)
|
|
88014
88015
|
{
|
|
@@ -90733,7 +90734,7 @@ const ShaderCompiler_default_ = ShaderCompiler;
|
|
|
90733
90734
|
x_ite_Namespace.set ("x_ite/Browser/Shaders/ShaderCompiler", ShaderCompiler_default_);
|
|
90734
90735
|
/* harmony default export */ const Shaders_ShaderCompiler = (ShaderCompiler_default_);
|
|
90735
90736
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Shaders/ShaderPart.js
|
|
90736
|
-
/* provided dependency */ var ShaderPart_$ = __webpack_require__(
|
|
90737
|
+
/* provided dependency */ var ShaderPart_$ = __webpack_require__(849);
|
|
90737
90738
|
/*******************************************************************************
|
|
90738
90739
|
*
|
|
90739
90740
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -93962,8 +93963,8 @@ function X3DBrowserContext (element)
|
|
|
93962
93963
|
{
|
|
93963
93964
|
Base_X3DBaseNode.call (this, this);
|
|
93964
93965
|
Routing_X3DRoutingContext.call (this);
|
|
93965
|
-
Core_X3DCoreContext.call (this, element);
|
|
93966
93966
|
Scripting_X3DScriptingContext.call (this);
|
|
93967
|
+
Core_X3DCoreContext.call (this, element);
|
|
93967
93968
|
Networking_X3DNetworkingContext.call (this);
|
|
93968
93969
|
Texturing_X3DTexturingContext.call (this);
|
|
93969
93970
|
Shaders_X3DShadersContext.call (this);
|
|
@@ -94028,8 +94029,8 @@ X3DBrowserContext .prototype = Object .assign (Object .create (Base_X3DBaseNode.
|
|
|
94028
94029
|
{
|
|
94029
94030
|
Base_X3DBaseNode.prototype.initialize ?.call (this);
|
|
94030
94031
|
Routing_X3DRoutingContext.prototype.initialize ?.call (this);
|
|
94031
|
-
Core_X3DCoreContext.prototype.initialize ?.call (this);
|
|
94032
94032
|
Scripting_X3DScriptingContext.prototype.initialize ?.call (this);
|
|
94033
|
+
Core_X3DCoreContext.prototype.initialize ?.call (this);
|
|
94033
94034
|
Networking_X3DNetworkingContext.prototype.initialize ?.call (this);
|
|
94034
94035
|
Texturing_X3DTexturingContext.prototype.initialize ?.call (this);
|
|
94035
94036
|
Shaders_X3DShadersContext.prototype.initialize ?.call (this);
|
|
@@ -94236,8 +94237,8 @@ X3DBrowserContext .prototype = Object .assign (Object .create (Base_X3DBaseNode.
|
|
|
94236
94237
|
Shaders_X3DShadersContext.prototype.dispose ?.call (this);
|
|
94237
94238
|
Texturing_X3DTexturingContext.prototype.dispose ?.call (this);
|
|
94238
94239
|
Networking_X3DNetworkingContext.prototype.dispose ?.call (this);
|
|
94239
|
-
Scripting_X3DScriptingContext.prototype.dispose ?.call (this);
|
|
94240
94240
|
Core_X3DCoreContext.prototype.dispose ?.call (this);
|
|
94241
|
+
Scripting_X3DScriptingContext.prototype.dispose ?.call (this);
|
|
94241
94242
|
Routing_X3DRoutingContext.prototype.dispose ?.call (this);
|
|
94242
94243
|
Base_X3DBaseNode.prototype.dispose ?.call (this);
|
|
94243
94244
|
},
|
|
@@ -113172,7 +113173,7 @@ const X3DSoundSourceNode_default_ = X3DSoundSourceNode;
|
|
|
113172
113173
|
x_ite_Namespace.set ("x_ite/Components/Sound/X3DSoundSourceNode", X3DSoundSourceNode_default_);
|
|
113173
113174
|
/* harmony default export */ const Sound_X3DSoundSourceNode = (X3DSoundSourceNode_default_);
|
|
113174
113175
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Sound/AudioClip.js
|
|
113175
|
-
/* provided dependency */ var AudioClip_$ = __webpack_require__(
|
|
113176
|
+
/* provided dependency */ var AudioClip_$ = __webpack_require__(849);
|
|
113176
113177
|
/*******************************************************************************
|
|
113177
113178
|
*
|
|
113178
113179
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -113340,12 +113341,12 @@ AudioClip .prototype = Object .assign (Object .create (Sound_X3DSoundSourceNode.
|
|
|
113340
113341
|
},
|
|
113341
113342
|
setTimeout: function (event)
|
|
113342
113343
|
{
|
|
113343
|
-
setTimeout (
|
|
113344
|
+
setTimeout (() =>
|
|
113344
113345
|
{
|
|
113345
113346
|
if (this .checkLoadState () === Base_X3DConstants.IN_PROGRESS_STATE)
|
|
113346
113347
|
this .setError (event);
|
|
113347
|
-
}
|
|
113348
|
-
|
|
113348
|
+
},
|
|
113349
|
+
3000);
|
|
113349
113350
|
},
|
|
113350
113351
|
setError: function (event)
|
|
113351
113352
|
{
|
|
@@ -114523,12 +114524,12 @@ DynamicsCompressor .prototype = Object .assign (Object .create (Sound_X3DSoundPr
|
|
|
114523
114524
|
{
|
|
114524
114525
|
constructor: DynamicsCompressor,
|
|
114525
114526
|
[Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new Base_FieldDefinitionArray ([
|
|
114526
|
-
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "metadata",
|
|
114527
|
-
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "description",
|
|
114528
|
-
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "enabled",
|
|
114527
|
+
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "metadata", new x_ite_Fields.SFNode ()),
|
|
114528
|
+
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "description", new x_ite_Fields.SFString ()),
|
|
114529
|
+
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "enabled", new x_ite_Fields.SFBool (true)),
|
|
114529
114530
|
|
|
114530
114531
|
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "gain", new x_ite_Fields.SFFloat (1)),
|
|
114531
|
-
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "attack", new x_ite_Fields.SFFloat (0.003)),
|
|
114532
|
+
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "attack", new x_ite_Fields.SFFloat (0.003)), // TODO: SFTime
|
|
114532
114533
|
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "knee", new x_ite_Fields.SFFloat (30)),
|
|
114533
114534
|
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "ratio", new x_ite_Fields.SFFloat (12)),
|
|
114534
114535
|
new Base_X3DFieldDefinition (Base_X3DConstants.inputOutput, "reduction", new x_ite_Fields.SFFloat ()),
|
|
@@ -116067,8 +116068,8 @@ const GIFMedia_default_ = GifMedia;
|
|
|
116067
116068
|
x_ite_Namespace.set ("x_ite/Browser/Texturing/GIFMedia", GIFMedia_default_);
|
|
116068
116069
|
/* harmony default export */ const GIFMedia = (GIFMedia_default_);
|
|
116069
116070
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/MovieTexture.js
|
|
116070
|
-
/* provided dependency */ var MovieTexture_$ = __webpack_require__(
|
|
116071
|
-
/* provided dependency */ var SuperGif = __webpack_require__(
|
|
116071
|
+
/* provided dependency */ var MovieTexture_$ = __webpack_require__(849);
|
|
116072
|
+
/* provided dependency */ var SuperGif = __webpack_require__(339);
|
|
116072
116073
|
/*******************************************************************************
|
|
116073
116074
|
*
|
|
116074
116075
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -116259,12 +116260,12 @@ MovieTexture .prototype = Object .assign (Object .create (Texturing_X3DTexture2D
|
|
|
116259
116260
|
},
|
|
116260
116261
|
setTimeout: function (event)
|
|
116261
116262
|
{
|
|
116262
|
-
setTimeout (
|
|
116263
|
+
setTimeout (() =>
|
|
116263
116264
|
{
|
|
116264
116265
|
if (this .checkLoadState () === Base_X3DConstants.IN_PROGRESS_STATE)
|
|
116265
116266
|
this .setError (event);
|
|
116266
|
-
}
|
|
116267
|
-
|
|
116267
|
+
},
|
|
116268
|
+
3000);
|
|
116268
116269
|
},
|
|
116269
116270
|
setError: function (event)
|
|
116270
116271
|
{
|
|
@@ -117031,7 +117032,7 @@ const MultiTextureTransform_default_ = MultiTextureTransform;
|
|
|
117031
117032
|
x_ite_Namespace.set ("x_ite/Components/Texturing/MultiTextureTransform", MultiTextureTransform_default_);
|
|
117032
117033
|
/* harmony default export */ const Texturing_MultiTextureTransform = (MultiTextureTransform_default_);
|
|
117033
117034
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/PixelTexture.js
|
|
117034
|
-
/* provided dependency */ var PixelTexture_$ = __webpack_require__(
|
|
117035
|
+
/* provided dependency */ var PixelTexture_$ = __webpack_require__(849);
|
|
117035
117036
|
/*******************************************************************************
|
|
117036
117037
|
*
|
|
117037
117038
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -117742,7 +117743,7 @@ const Components_default_ = Components;
|
|
|
117742
117743
|
x_ite_Namespace.set ("x_ite/Components", Components_default_);
|
|
117743
117744
|
/* harmony default export */ const x_ite_Components = ((/* unused pure expression or super */ null && (Components_default_)));
|
|
117744
117745
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/DOMIntegration.js
|
|
117745
|
-
/* provided dependency */ var DOMIntegration_$ = __webpack_require__(
|
|
117746
|
+
/* provided dependency */ var DOMIntegration_$ = __webpack_require__(849);
|
|
117746
117747
|
/*******************************************************************************
|
|
117747
117748
|
* MIT License
|
|
117748
117749
|
*
|
|
@@ -118979,7 +118980,7 @@ const SupportedProfiles_default_ = SupportedProfiles;
|
|
|
118979
118980
|
x_ite_Namespace.set ("x_ite/Configuration/SupportedProfiles", SupportedProfiles_default_);
|
|
118980
118981
|
/* harmony default export */ const Configuration_SupportedProfiles = (SupportedProfiles_default_);
|
|
118981
118982
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/X3DBrowser.js
|
|
118982
|
-
/* provided dependency */ var X3DBrowser_$ = __webpack_require__(
|
|
118983
|
+
/* provided dependency */ var X3DBrowser_$ = __webpack_require__(849);
|
|
118983
118984
|
/*******************************************************************************
|
|
118984
118985
|
*
|
|
118985
118986
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -119455,74 +119456,56 @@ X3DBrowser .prototype = Object .assign (Object .create (Browser_X3DBrowserContex
|
|
|
119455
119456
|
if (!(parameter instanceof x_ite_Fields.MFString))
|
|
119456
119457
|
throw new Error ("Browser.loadURL: parameter must be of type MFString.");
|
|
119457
119458
|
|
|
119458
|
-
// Cancel any loading.
|
|
119459
|
-
|
|
119460
|
-
this ._loadCount .removeInterest ("checkLoadCount", this);
|
|
119461
|
-
this .prepareEvents () .removeInterest ("updateInitialized", this);
|
|
119462
|
-
|
|
119463
|
-
this [_fileLoader] ?.abort ();
|
|
119464
|
-
|
|
119465
119459
|
// Start loading.
|
|
119466
119460
|
|
|
119467
|
-
const fileLoader =
|
|
119468
|
-
|
|
119469
|
-
this .setBrowserLoading (true);
|
|
119470
|
-
this .addLoadingObject (fileLoader);
|
|
119461
|
+
const fileLoader = new InputOutput_FileLoader (this .getWorld ());
|
|
119471
119462
|
|
|
119472
119463
|
fileLoader .createX3DFromURL (url, parameter, (scene) =>
|
|
119473
119464
|
{
|
|
119474
|
-
if (
|
|
119465
|
+
if (this [_fileLoader] !== fileLoader)
|
|
119475
119466
|
{
|
|
119476
119467
|
reject (new Error ("Loading of X3D file aborted."));
|
|
119477
|
-
return;
|
|
119478
|
-
}
|
|
119479
|
-
|
|
119480
|
-
if (!this .getBrowserOption ("SplashScreen"))
|
|
119481
|
-
this .getCanvas () .show ();
|
|
119482
|
-
|
|
119483
|
-
if (scene)
|
|
119484
|
-
{
|
|
119485
|
-
this .addLoadingObject (this); // Prevent resetLoadCount.
|
|
119486
|
-
this .replaceWorld (scene) .then (resolve) .catch (reject);
|
|
119487
|
-
this .removeLoadingObject (this);
|
|
119488
|
-
this .removeLoadingObject (fileLoader);
|
|
119489
119468
|
}
|
|
119490
119469
|
else
|
|
119491
119470
|
{
|
|
119492
|
-
this .
|
|
119493
|
-
|
|
119471
|
+
if (!this .getBrowserOption ("SplashScreen"))
|
|
119472
|
+
this .getCanvas () .show ();
|
|
119494
119473
|
|
|
119495
|
-
|
|
119474
|
+
if (scene)
|
|
119496
119475
|
{
|
|
119497
|
-
this .
|
|
119498
|
-
|
|
119499
|
-
|
|
119500
|
-
|
|
119476
|
+
this .addLoadingObject (this); // Prevent resetLoadCount.
|
|
119477
|
+
this .replaceWorld (scene) .then (resolve) .catch (reject);
|
|
119478
|
+
this .removeLoadingObject (this);
|
|
119479
|
+
this .removeLoadingObject (fileLoader);
|
|
119480
|
+
}
|
|
119481
|
+
else
|
|
119482
|
+
{
|
|
119483
|
+
this .callBrowserCallbacks (Base_X3DConstants.CONNECTION_ERROR);
|
|
119484
|
+
this .callBrowserEventHandler ("error");
|
|
119501
119485
|
|
|
119502
|
-
|
|
119486
|
+
setTimeout (() =>
|
|
119487
|
+
{
|
|
119488
|
+
this .getSplashScreen ()
|
|
119489
|
+
.find (".x_ite-private-spinner-text")
|
|
119490
|
+
.text (locale_gettext ("Failed loading world."));
|
|
119491
|
+
});
|
|
119492
|
+
|
|
119493
|
+
reject (new Error ("Couldn't load X3D file."));
|
|
119494
|
+
}
|
|
119503
119495
|
}
|
|
119504
119496
|
},
|
|
119505
119497
|
(fragment) =>
|
|
119506
119498
|
{
|
|
119507
|
-
|
|
119508
|
-
{
|
|
119509
|
-
reject (new Error ("Change viewpoint aborted."));
|
|
119510
|
-
return;
|
|
119511
|
-
}
|
|
119499
|
+
fileLoader .ready = true;
|
|
119512
119500
|
|
|
119513
119501
|
this .changeViewpoint (fragment);
|
|
119514
119502
|
this .removeLoadingObject (fileLoader);
|
|
119515
|
-
this .setBrowserLoading (false);
|
|
119516
119503
|
|
|
119517
119504
|
resolve ();
|
|
119518
119505
|
},
|
|
119519
119506
|
(url, target) =>
|
|
119520
119507
|
{
|
|
119521
|
-
|
|
119522
|
-
{
|
|
119523
|
-
reject (new Error ("Loading of file aborted."));
|
|
119524
|
-
return;
|
|
119525
|
-
}
|
|
119508
|
+
fileLoader .ready = true;
|
|
119526
119509
|
|
|
119527
119510
|
if (target)
|
|
119528
119511
|
window .open (url, target);
|
|
@@ -119530,10 +119513,17 @@ X3DBrowser .prototype = Object .assign (Object .create (Browser_X3DBrowserContex
|
|
|
119530
119513
|
location = url;
|
|
119531
119514
|
|
|
119532
119515
|
this .removeLoadingObject (fileLoader);
|
|
119533
|
-
this .setBrowserLoading (false);
|
|
119534
119516
|
|
|
119535
119517
|
resolve ();
|
|
119536
119518
|
});
|
|
119519
|
+
|
|
119520
|
+
if (!fileLoader .ready)
|
|
119521
|
+
{
|
|
119522
|
+
this [_fileLoader] ?.abort ();
|
|
119523
|
+
|
|
119524
|
+
this .setBrowserLoading (true);
|
|
119525
|
+
this .addLoadingObject (this [_fileLoader] = fileLoader);
|
|
119526
|
+
}
|
|
119537
119527
|
});
|
|
119538
119528
|
},
|
|
119539
119529
|
addBrowserListener: function (callback, object)
|
|
@@ -119902,7 +119892,7 @@ const X3DBrowser_default_ = X3DBrowser;
|
|
|
119902
119892
|
x_ite_Namespace.set ("x_ite/Browser/X3DBrowser", X3DBrowser_default_);
|
|
119903
119893
|
/* harmony default export */ const Browser_X3DBrowser = (X3DBrowser_default_);
|
|
119904
119894
|
;// CONCATENATED MODULE: ./src/x_ite/Fallback.js
|
|
119905
|
-
/* provided dependency */ var Fallback_$ = __webpack_require__(
|
|
119895
|
+
/* provided dependency */ var Fallback_$ = __webpack_require__(849);
|
|
119906
119896
|
/*******************************************************************************
|
|
119907
119897
|
*
|
|
119908
119898
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -120081,8 +120071,8 @@ const MicroTime_default_ = undefined;
|
|
|
120081
120071
|
x_ite_Namespace.set ("standard/Time/MicroTime", MicroTime_default_);
|
|
120082
120072
|
/* harmony default export */ const MicroTime = ((/* unused pure expression or super */ null && (MicroTime_default_)));
|
|
120083
120073
|
;// CONCATENATED MODULE: ./src/lib/jquery.js
|
|
120084
|
-
/* provided dependency */ var jquery_$ = __webpack_require__(
|
|
120085
|
-
/* provided dependency */ var pako = __webpack_require__(
|
|
120074
|
+
/* provided dependency */ var jquery_$ = __webpack_require__(849);
|
|
120075
|
+
/* provided dependency */ var pako = __webpack_require__(494);
|
|
120086
120076
|
jquery_$.decodeText = function (input)
|
|
120087
120077
|
{
|
|
120088
120078
|
if (typeof input === "string")
|
|
@@ -120114,14 +120104,14 @@ const jquery_default_ = jquery_$;
|
|
|
120114
120104
|
x_ite_Namespace.set ("lib/jquery", jquery_default_);
|
|
120115
120105
|
/* harmony default export */ const jquery = ((/* unused pure expression or super */ null && (jquery_default_)));
|
|
120116
120106
|
;// CONCATENATED MODULE: ./src/lib/libtess.js
|
|
120117
|
-
/* provided dependency */ var libtess_libtess = __webpack_require__(
|
|
120107
|
+
/* provided dependency */ var libtess_libtess = __webpack_require__(625);
|
|
120118
120108
|
const libtess_default_ = libtess_libtess;
|
|
120119
120109
|
;
|
|
120120
120110
|
|
|
120121
120111
|
x_ite_Namespace.set ("lib/libtess", libtess_default_);
|
|
120122
120112
|
/* harmony default export */ const lib_libtess = ((/* unused pure expression or super */ null && (libtess_default_)));
|
|
120123
120113
|
;// CONCATENATED MODULE: ./src/x_ite/X3D.js
|
|
120124
|
-
/* provided dependency */ var X3D_$ = __webpack_require__(
|
|
120114
|
+
/* provided dependency */ var X3D_$ = __webpack_require__(849);
|
|
120125
120115
|
/*******************************************************************************
|
|
120126
120116
|
*
|
|
120127
120117
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -120377,7 +120367,7 @@ const X3D_default_ = X3D;
|
|
|
120377
120367
|
x_ite_Namespace.set ("x_ite/X3D", X3D_default_);
|
|
120378
120368
|
/* harmony default export */ const x_ite_X3D = (X3D_default_);
|
|
120379
120369
|
;// CONCATENATED MODULE: ./src/x_ite/X3DCanvasElement.js
|
|
120380
|
-
/* provided dependency */ var X3DCanvasElement_$ = __webpack_require__(
|
|
120370
|
+
/* provided dependency */ var X3DCanvasElement_$ = __webpack_require__(849);
|
|
120381
120371
|
/*******************************************************************************
|
|
120382
120372
|
*
|
|
120383
120373
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -120656,7 +120646,7 @@ x_ite_Namespace.set ("shim", shim_default_);
|
|
|
120656
120646
|
|
|
120657
120647
|
// Assign X3D to global namespace.
|
|
120658
120648
|
|
|
120659
|
-
window [Symbol .for ("X_ITE.X3D-8.6.
|
|
120649
|
+
window [Symbol .for ("X_ITE.X3D-8.6.19")] = x_ite_X3D;
|
|
120660
120650
|
|
|
120661
120651
|
x_ite_X3DCanvasElement.define ();
|
|
120662
120652
|
|