3dtiles-inspector 0.2.3 → 0.2.4
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 +16 -0
- package/dist/inspector-assets/viewer/app.js +595 -51
- package/package.json +1 -1
- package/src/server/viewerHtml.js +1 -1
- package/src/viewer/app.js +7 -2
- package/src/viewer/navigation/cameraFlyTo.js +730 -0
- package/src/viewer/navigation/flyTo.js +78 -16
- package/src/viewer/scene/cameraController.js +2 -2
- package/src/viewer/scene/sceneSetup.js +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.4] - 2026-05-04
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Added smooth camera fly-to animations for tileset framing and coordinate navigation, including arced world-space paths, upright heading/pitch interpolation, and orthographic zoom support.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Changed the initial tileset framing and `Move to Tiles`/coordinate actions to animate the camera instead of snapping immediately.
|
|
18
|
+
- Moved the crop region list below the crop confirm/cancel controls.
|
|
19
|
+
- Reduced the viewer's initial camera distance and far plane.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Fixed zooming out in center-mode views drifting away from the mouse anchor because globe zoom-out transitions were being applied to local coordinates.
|
|
24
|
+
|
|
9
25
|
## [0.2.3] - 2026-05-04
|
|
10
26
|
|
|
11
27
|
### Changed
|