@needle-tools/gltf-progressive 2.1.0-experimental.3 → 2.1.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/CHANGELOG.md +20 -0
- package/gltf-progressive.js +430 -430
- package/gltf-progressive.min.js +7 -7
- package/gltf-progressive.umd.cjs +7 -7
- package/lib/extension.js +15 -10
- package/lib/loaders.d.ts +3 -3
- package/lib/loaders.js +30 -7
- package/lib/lods_manager.js +25 -9
- package/lib/version.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ 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
|
+
## [2.1.1] - 2025-02-20
|
|
8
|
+
- Fix: Handle failed progressive texture loading due to e.g. offline or missing files
|
|
9
|
+
- Fix: Regression causing custom KTX2Transcoder location not working for e.g. offline usage
|
|
10
|
+
|
|
11
|
+
## [2.1.0] - 2025-02-13
|
|
12
|
+
- Bump version
|
|
13
|
+
|
|
14
|
+
## [2.1.0-alpha.6] - 2025-02-12
|
|
15
|
+
- Fix: `?debugprogressive` now also switches texture LODs
|
|
16
|
+
|
|
17
|
+
## [2.1.0-alpha.5] - 2025-01-30
|
|
18
|
+
- Add: initial support for Orthographic cameras
|
|
19
|
+
|
|
20
|
+
## [2.1.0-alpha.4] - 2025-01-29
|
|
21
|
+
- Fix: LOD not loading if the max texture resolution is too small
|
|
22
|
+
|
|
23
|
+
## [2.1.0-alpha.3] - 2025-01-21
|
|
24
|
+
- Change: Load Draco and KTX loaders as soon as possible
|
|
25
|
+
- Fix: Make `GET` request to draco endpoint with 1 byte range instead of HEAD request. The HEAD request did return the whole draco loader.
|
|
26
|
+
|
|
7
27
|
## [2.1.0-alpha.2] - 2025-01-17
|
|
8
28
|
- Add: expose methods in globalThis/window at `Needle.gltfProgressive`
|
|
9
29
|
|