@jdultra/threedtiles 11.1.6 → 11.1.7
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/README.md +36 -12
- package/dist/threedtiles.min.js +1 -1
- package/dist/threedtiles.min.js.map +1 -1
- package/dist/tileset/OGC3DTile.d.ts +6 -0
- package/package.json +2 -2
|
@@ -113,6 +113,12 @@ export class OGC3DTile extends THREE.Object3D<THREE.Object3DEventMap> {
|
|
|
113
113
|
hasUnloadedJSONContent: number;
|
|
114
114
|
centerModel: boolean | undefined;
|
|
115
115
|
abortController: AbortController;
|
|
116
|
+
onLoadCallback: Function | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* Manually updates all the matrices of the tileset.
|
|
119
|
+
* To be called after transforming a {@link OGC3DTile tileset} instantiated with the "static" option
|
|
120
|
+
*/
|
|
121
|
+
updateMatrices(): void;
|
|
116
122
|
/**
|
|
117
123
|
* Call this to specify the canvas width/height when it changes (used to compute tiles geometric error that controls tile refinement).
|
|
118
124
|
* It's unnecessary to call this when the {@link OGC3DTile} is instantiated with the renderer.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jdultra/threedtiles",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.7",
|
|
4
4
|
"description": "An OGC 3DTiles viewer for Three.js",
|
|
5
5
|
"main": "dist/threedtiles.min.js",
|
|
6
6
|
"types": "dist/entry.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"author": "Emeric Beaufays",
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"three": "0.
|
|
35
|
+
"three": "0.168.0"
|
|
36
36
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|