3dtiles-inspector 0.1.1 → 0.1.2
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 +10 -0
- package/README.md +6 -2
- package/dist/inspector-assets/viewer/app.js +1233 -671
- package/package.json +1 -1
- package/src/viewer/app.js +44 -0
- package/src/viewer/session.js +14 -8
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,16 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.2] - 2026-04-24
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `Bounding Volume` toolbar toggle backed by `DebugTilesPlugin` to show tileset box, sphere, and region bounds.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Moved `Latitude`, `Longitude`, and `Height` labels to the left side of the coordinate inputs and expanded the shortened labels.
|
|
18
|
+
|
|
9
19
|
## [0.1.1] - 2026-04-23
|
|
10
20
|
|
|
11
21
|
### Changed
|
package/README.md
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
1
3
|
# 3DTiles-Inspector
|
|
2
4
|
|
|
3
5
|
[](https://www.npmjs.com/package/3dtiles-inspector)
|
|
4
6
|
[](https://github.com/WilliamLiu-1997/3DTiles-Inspector/actions/workflows/ci.yml)
|
|
5
7
|
[](LICENSE)
|
|
6
8
|
|
|
7
|
-
`3dtiles-inspector` is a Node.js package and CLI for opening a local 3D Tiles tileset in a browser inspector, adjusting the root transform, tuning the effective geometric error scale, and saving the result back to disk.
|
|
8
|
-
|
|
9
9
|
<img src="https://raw.githubusercontent.com/WilliamLiu-1997/3DTiles-Inspector/main/3DTiles-Inspector.png" alt="3DTiles-Inspector" width="960" />
|
|
10
10
|
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
`3dtiles-inspector` is a Node.js package and CLI for opening a local 3D Tiles tileset in a browser inspector, adjusting the root transform, tuning the effective geometric error scale, and saving the result back to disk.
|
|
14
|
+
|
|
11
15
|
Requires Node.js 18 or newer.
|
|
12
16
|
|
|
13
17
|
## Install
|