x_ite 8.7.7 → 8.7.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/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 +22 -22
- package/dist/assets/components/ParticleSystems.min.js +1 -1
- package/dist/assets/components/Picking.js +18 -18
- 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 +28 -28
- 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/x_ite.css +1 -1
- package/dist/x_ite.js +70 -61
- package/dist/x_ite.min.js +1 -1
- package/dist/x_ite.zip +0 -0
- package/docs/_config.yml +1 -1
- package/package.json +1 -1
- package/src/x_ite/Base/X3DObjectArrayField.js +15 -6
- package/src/x_ite/Browser/VERSION.js +1 -1
package/dist/x_ite.zip
CHANGED
|
Binary file
|
package/docs/_config.yml
CHANGED
package/package.json
CHANGED
|
@@ -198,13 +198,14 @@ X3DObjectArrayField .prototype = Object .assign (Object .create (X3DArrayField .
|
|
|
198
198
|
},
|
|
199
199
|
set: function (value)
|
|
200
200
|
{
|
|
201
|
-
const
|
|
202
|
-
|
|
203
|
-
|
|
201
|
+
const
|
|
202
|
+
target = this [_target],
|
|
203
|
+
array = target .getValue (),
|
|
204
|
+
newLength = value .length;
|
|
204
205
|
|
|
205
|
-
|
|
206
|
+
target .resize (newLength, undefined, true);
|
|
206
207
|
|
|
207
|
-
for (let i = 0
|
|
208
|
+
for (let i = 0; i < newLength; ++ i)
|
|
208
209
|
array [i] .set (value [i] instanceof X3DField ? value [i] .getValue () : value [i]);
|
|
209
210
|
},
|
|
210
211
|
setValue: function (value)
|
|
@@ -351,6 +352,10 @@ X3DObjectArrayField .prototype = Object .assign (Object .create (X3DArrayField .
|
|
|
351
352
|
}
|
|
352
353
|
}
|
|
353
354
|
}
|
|
355
|
+
else
|
|
356
|
+
{
|
|
357
|
+
first = last;
|
|
358
|
+
}
|
|
354
359
|
|
|
355
360
|
if (first !== last)
|
|
356
361
|
target .addEvent ();
|
|
@@ -375,8 +380,12 @@ X3DObjectArrayField .prototype = Object .assign (Object .create (X3DArrayField .
|
|
|
375
380
|
}
|
|
376
381
|
}
|
|
377
382
|
}
|
|
383
|
+
else
|
|
384
|
+
{
|
|
385
|
+
first = last;
|
|
386
|
+
}
|
|
378
387
|
|
|
379
|
-
if (first !==
|
|
388
|
+
if (first !== last)
|
|
380
389
|
target .addEvent ();
|
|
381
390
|
|
|
382
391
|
return first;
|