@jdultra/threedtiles 13.1.0 → 13.1.1

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.
@@ -44,7 +44,9 @@ export class TileLoader {
44
44
  pointsCallback: Function | undefined;
45
45
  gltfLoader: any;
46
46
  hasDracoLoader: boolean | undefined;
47
+ dracoLoader: any;
47
48
  hasKTX2Loader: boolean | undefined;
49
+ ktx2loader: any;
48
50
  hasMeshOptDecoder: boolean;
49
51
  b3dmDecoder: B3DMDecoder;
50
52
  splatsDecoder: SplatsDecoder;
@@ -90,7 +92,9 @@ export class TileLoader {
90
92
  * @param {string|Number} tileIdentifier the tile ID
91
93
  */
92
94
  invalidate(path: string, tileIdentifier: string | number): void;
95
+ dispose(): void;
93
96
  _checkSize(): void;
97
+ _disposeEntryContent(entry: any): void;
94
98
  }
95
99
  import * as THREE from 'three';
96
100
  import { B3DMDecoder } from "../decoder/B3DMDecoder";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jdultra/threedtiles",
3
- "version": "13.1.0",
3
+ "version": "13.1.1",
4
4
  "author": "Emeric Beaufays",
5
5
  "description": "An OGC 3DTiles viewer for Three.js",
6
6
  "main": "dist/threedtiles.cjs.js",