@needle-tools/gltf-progressive 1.2.2-alpha.4 → 1.2.3-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -1
- package/README.md +3 -1
- package/gltf-progressive.js +587 -566
- package/gltf-progressive.min.js +7 -7
- package/gltf-progressive.umd.cjs +8 -8
- package/lib/lods_manager.d.ts +4 -4
- package/lib/lods_manager.js +56 -14
- package/lib/version.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,10 @@ All notable changes to this package will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [1.2.
|
|
7
|
+
## [1.2.3-alpha] - 2023-06-24
|
|
8
|
+
- Change: automatically change LOD update interval based on framerate
|
|
9
|
+
|
|
10
|
+
## [1.2.2-alpha.4] - 2023-06-20
|
|
8
11
|
- Add: Register version in global "GLTF_PROGRESSIVE_VERSION" variable
|
|
9
12
|
- Add: `<model-viewer>` elements added document at any time are now properly registered
|
|
10
13
|
- Fix: LOD updates for multiple `<model-viewer>` elements
|
package/README.md
CHANGED
|
@@ -18,7 +18,9 @@ Examples are in the `/examples` directory. Live versions can be found in the lin
|
|
|
18
18
|
- [single \<model-viewer> element](https://engine.needle.tools/demos/gltf-progressive/modelviewer)
|
|
19
19
|
- [multiple \<model-viewer> elements](https://engine.needle.tools/demos/gltf-progressive/modelviewer-multiple)
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
**Interactive Examples**:
|
|
22
|
+
- [Stackblitz](https://stackblitz.com/@marwie/collections/gltf-progressive)
|
|
23
|
+
- [Codesandbox](https://codesandbox.io/dashboard/sandboxes/gltf-progressive)
|
|
22
24
|
|
|
23
25
|
|
|
24
26
|
<br/>
|