3dtiles-inspector 0.2.7 → 0.2.9
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 +19 -0
- package/dist/inspector-assets/viewer/app.js +11425 -7790
- package/package.json +4 -4
- package/src/server/splatCrop/gltfResource.js +4 -4
- package/src/server/splatCrop/spzSubsetWriter.js +208 -0
- package/src/server/splatCrop/traversal.js +108 -41
- package/src/server/splatCrop/worker.js +268 -282
- package/src/server/splatCrop/workerPool.js +35 -2
- package/src/viewer/scene/cameraController.js +33 -70
- package/src/viewer/scene/tiles.js +30 -27
- package/src/viewer/transform/geometricError.js +98 -13
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,25 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.9] - 2026-05-21
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Changed Gaussian Splat crop saves to raw-copy surviving SPZ v3 packet bytes instead of re-encoding splats, preserving source quantization and SH data while using gzip level 6.
|
|
14
|
+
- Optimized save-time Gaussian Splat crop filtering by evaluating raw SPZ positions against flattened selection matrices and planes.
|
|
15
|
+
- Updated `3d-tiles-renderer` to `0.4.25`, `3d-tiles-rendererjs-3dgs-plugin` to `0.1.8`, and `@sparkjsdev/spark` to `2.1.0`; replaced the deprecated imagery globe `XYZTilesPlugin` path with `GeneratedSurfacePlugin` and `ImageOverlayPlugin`.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- Fixed globe zoom-out near the horizon drifting away from the zoom anchor or moving the camera below the ellipsoid surface.
|
|
20
|
+
|
|
21
|
+
## [0.2.8] - 2026-05-13
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Fixed save-time crop memory spikes on large tilesets by limiting concurrent Gaussian Splat resource processing based on CPU parallelism, capped at 8 workers.
|
|
26
|
+
- Fixed viewer stalls when many tiles are loaded by avoiding repeated tileset-wide leaf geometric-error scans during tile preprocessing.
|
|
27
|
+
|
|
9
28
|
## [0.2.7] - 2026-05-10
|
|
10
29
|
|
|
11
30
|
### Changed
|