3dtiles-inspector 0.2.15 → 0.2.17
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 +37 -0
- package/dist/inspector-assets/viewer/app.js +18012 -19510
- package/package.json +4 -4
- package/src/server/viewerHtml.js +14 -4
- package/src/viewer/app.js +23 -0
- package/src/viewer/dom/cropUi.js +29 -14
- package/src/viewer/dom/elements.js +2 -2
- package/src/viewer/dom/events.js +41 -3
- package/src/viewer/scene/cameraController.js +186 -46
- package/src/viewer/scene/sceneSetup.js +1 -1
- package/src/viewer/scene/tiles.js +50 -14
- package/src/viewer/screenSelection/cropController.js +273 -12
- package/src/viewer/screenSelection/sdf.js +1 -1
- package/src/viewer/transform/transformModeController.js +3 -1
- package/src/viewer/transform/uniformScale.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,43 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.17] - 2026-07-16
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Updated `3d-tiles-renderer` from `0.4.28` to `0.5.0`,
|
|
14
|
+
`3d-tiles-rendererjs-3dgs-plugin` from `0.1.14` to `0.1.15`, and Three.js
|
|
15
|
+
from `0.180.0` to `0.185.1`.
|
|
16
|
+
- Isolated globe cache and processing queues from the inspected tileset while
|
|
17
|
+
keeping globe imagery downloads on the globe queue.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Fixed Gaussian splats drawing over the mouse anchor when reversed depth is
|
|
22
|
+
enabled.
|
|
23
|
+
|
|
24
|
+
## [0.2.16] - 2026-06-23
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- Added an editable crop-sphere size input for setting the sphere radius
|
|
29
|
+
directly.
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- Changed active crop-sphere editing so short clicks on tiles move the sphere
|
|
34
|
+
center while drag gestures continue to rotate the camera.
|
|
35
|
+
- Changed active crop-sphere previews to highlight splats outside the sphere
|
|
36
|
+
while leaving inside splats unchanged.
|
|
37
|
+
- Changed the viewer background from pure white to a slightly darker neutral
|
|
38
|
+
tone.
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Fixed pending crop-sphere deactivation leaving the sphere wireframe visible.
|
|
43
|
+
- Fixed save operations allowing crop-sphere size, crop-sphere transform, or
|
|
44
|
+
root scale track changes while saving was in progress.
|
|
45
|
+
|
|
9
46
|
## [0.2.15] - 2026-06-23
|
|
10
47
|
|
|
11
48
|
### Added
|