x_ite 8.10.0 → 8.10.1
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 +26 -26
- 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 -23
- 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 +17 -17
- package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
- package/dist/assets/components/Scripting.js +37 -37
- 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 +18 -18
- 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 +58 -58
- package/dist/x_ite.min.js +1 -1
- package/dist/x_ite.zip +0 -0
- package/docs/_config.yml +1 -1
- package/docs/_posts/what's-new.md +23 -0
- package/docs/laboratory/gltf-sample-viewer.html +16 -7
- package/package.json +1 -1
- package/src/x_ite/Browser/VERSION.js +1 -1
package/dist/x_ite.zip
CHANGED
|
Binary file
|
package/docs/_config.yml
CHANGED
|
@@ -5,6 +5,29 @@ nav: main
|
|
|
5
5
|
categories: []
|
|
6
6
|
tags: [New, Releases]
|
|
7
7
|
---
|
|
8
|
+
## X_ITE v8.10.0 Released
|
|
9
|
+
|
|
10
|
+
*Leipzig, 17th July 2023:* We right now released a new version.
|
|
11
|
+
|
|
12
|
+
### New Features
|
|
13
|
+
|
|
14
|
+
* The component/profile messages in the console from HAnim should be gone now.
|
|
15
|
+
* HAnimHumanoid is now GPU accelerated, try high poly objects.
|
|
16
|
+
* glTF skin object is now completely translated into HAnimHumanoid even with animations.
|
|
17
|
+
|
|
18
|
+
With the [glTF Sample Viewer](https://create3000.github.io/x_ite/laboratory/gltf-sample-viewer) you can test glTF and HAnimHumanoid if you like. Files of interest are:
|
|
19
|
+
|
|
20
|
+
#### glTF Random Models
|
|
21
|
+
|
|
22
|
+
* Animated Bee (lots of joints)
|
|
23
|
+
|
|
24
|
+
#### glTF Sample Models
|
|
25
|
+
|
|
26
|
+
* Brain Stem (high poly)
|
|
27
|
+
* Cesium man
|
|
28
|
+
* Fox
|
|
29
|
+
* Recursive Skeletons (stress test)
|
|
30
|
+
|
|
8
31
|
## X_ITE v8.7.0 Released
|
|
9
32
|
|
|
10
33
|
*Leipzig, 14th May 2023:* This release comes with a breaking change: `Browser.createX3DFromString` is now asynchronous and returns now a Promise. This ensures that all components are loaded, and all necessary nodes can be provided.
|
|
@@ -108,9 +108,11 @@ tags: [glTF, Sample, Viewer]
|
|
|
108
108
|
<script>
|
|
109
109
|
/* find ./docs/glTF/ -type f -name "*.gltf" -o -name "*.glb" | sort */
|
|
110
110
|
const models = [
|
|
111
|
+
"Animated Bee/animated_bee.glb",
|
|
111
112
|
"Bonsai 1/Bonsai 1.gltf",
|
|
112
113
|
"Bus Stop 1/Bus Stop 1.gltf",
|
|
113
114
|
"NeilArmstrong/NeilArmstrong.glb",
|
|
115
|
+
"Walking Alien/Walking Alien.gltf",
|
|
114
116
|
"YetiWarrior/scene.gltf",
|
|
115
117
|
];
|
|
116
118
|
|
|
@@ -392,18 +394,25 @@ async function loadURL (filename, server, event)
|
|
|
392
394
|
{
|
|
393
395
|
const timeSensor = group .children [0];
|
|
394
396
|
|
|
395
|
-
timeSensor .loop = true;
|
|
396
|
-
timeSensor .stopTime = Date .now () / 1000;
|
|
397
|
-
|
|
398
397
|
$("<input></input>")
|
|
399
398
|
.attr ("id", "animation" + i)
|
|
400
399
|
.attr ("type", "checkbox")
|
|
401
400
|
.on ("change", event =>
|
|
402
401
|
{
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
402
|
+
for (const group of animations .children)
|
|
403
|
+
group .children [0] .stopTime = Date .now () / 1000;
|
|
404
|
+
|
|
405
|
+
if (!event .target .checked)
|
|
406
|
+
return;
|
|
407
|
+
|
|
408
|
+
$("#animations") .children () .each ((i, element) =>
|
|
409
|
+
{
|
|
410
|
+
if (element !== event .target)
|
|
411
|
+
element .checked = false;
|
|
412
|
+
});
|
|
413
|
+
|
|
414
|
+
timeSensor .loop = true;
|
|
415
|
+
timeSensor .startTime = Date .now () / 1000;
|
|
407
416
|
})
|
|
408
417
|
.appendTo ($("#animations"));
|
|
409
418
|
|
package/package.json
CHANGED