3dtiles-inspector 0.2.8 → 0.2.10
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 +18 -0
- package/README.md +1 -1
- package/dist/inspector-assets/viewer/app.js +11748 -7917
- package/package.json +4 -4
- package/src/server/splatCrop/spzSubsetWriter.js +208 -0
- package/src/server/splatCrop/worker.js +268 -282
- package/src/server/viewerHtml.js +141 -3
- package/src/viewer/app.js +12 -0
- package/src/viewer/dom/elements.js +2 -0
- package/src/viewer/dom/events.js +117 -37
- package/src/viewer/scene/cameraController.js +33 -70
- package/src/viewer/scene/tiles.js +28 -25
- package/src/viewer/transform/rootTransformController.js +38 -0
- package/src/viewer/transform/uniformScale.js +179 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.10] - 2026-05-22
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Added an infinite `Scale` drag track and editable value input for root transform edits.
|
|
14
|
+
|
|
15
|
+
## [0.2.9] - 2026-05-21
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- 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.
|
|
20
|
+
- Optimized save-time Gaussian Splat crop filtering by evaluating raw SPZ positions against flattened selection matrices and planes.
|
|
21
|
+
- 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`.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Fixed globe zoom-out near the horizon drifting away from the zoom anchor or moving the camera below the ellipsoid surface.
|
|
26
|
+
|
|
9
27
|
## [0.2.8] - 2026-05-13
|
|
10
28
|
|
|
11
29
|
### Fixed
|
package/README.md
CHANGED
|
@@ -85,7 +85,7 @@ const {
|
|
|
85
85
|
|
|
86
86
|
<img src="https://raw.githubusercontent.com/WilliamLiu-1997/3DTiles-Inspector/main/screenshot.png" alt="screenshot" />
|
|
87
87
|
|
|
88
|
-
- `Translate`, `Rotate`, and `Reset` for root transform edits
|
|
88
|
+
- `Translate`, `Rotate`, infinite `Scale` track/value input, and `Reset` for root transform edits
|
|
89
89
|
- `Move Camera` to a WGS84 latitude / longitude / height
|
|
90
90
|
- `Move Tiles` to relocate the tileset root with an ENU-aligned transform
|
|
91
91
|
- `Set Position` to click the globe, terrain, or loaded tiles and place the tileset there
|