3dtiles-inspector 0.2.16 → 0.2.18
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 +24 -0
- package/dist/inspector-assets/viewer/app.js +17730 -19469
- package/package.json +4 -4
- package/src/viewer/app.js +2 -0
- package/src/viewer/scene/cameraController.js +186 -46
- package/src/viewer/scene/renderOrder.js +5 -0
- package/src/viewer/scene/tiles.js +50 -14
- package/src/viewer/scene/transformControls.js +11 -5
- package/src/viewer/screenSelection/cropController.js +17 -4
- package/src/viewer/screenSelection/farHandle.js +19 -6
- package/src/viewer/transform/tilesetTransform.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,30 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.18] - 2026-07-16
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Fixed reversed-depth render ordering for transform controls, crop guides,
|
|
14
|
+
and crop-sphere wireframes with Three.js 0.185.x.
|
|
15
|
+
- Fixed translate, rotate, and scale edits not updating already loaded tiles
|
|
16
|
+
with Three.js 0.185.x.
|
|
17
|
+
|
|
18
|
+
## [0.2.17] - 2026-07-16
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Updated `3d-tiles-renderer` from `0.4.28` to `0.5.0`,
|
|
23
|
+
`3d-tiles-rendererjs-3dgs-plugin` from `0.1.14` to `0.1.15`, and Three.js
|
|
24
|
+
from `0.180.0` to `0.185.1`.
|
|
25
|
+
- Isolated globe cache and processing queues from the inspected tileset while
|
|
26
|
+
keeping globe imagery downloads on the globe queue.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- Fixed Gaussian splats drawing over the mouse anchor when reversed depth is
|
|
31
|
+
enabled.
|
|
32
|
+
|
|
9
33
|
## [0.2.16] - 2026-06-23
|
|
10
34
|
|
|
11
35
|
### Added
|