@jdultra/threedtiles 10.1.2 → 10.1.3
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.
|
@@ -14,7 +14,6 @@ export class InstancedOGC3DTile {
|
|
|
14
14
|
* @param {Object} [properties.geometricErrorMultiplier] - the geometric error of the parent. 1.0 by default corresponds to a maxScreenSpaceError of 16
|
|
15
15
|
* @param {Object} [properties.loadOutsideView] - if truthy, tiles otside the camera frustum will be loaded with the least possible amount of detail
|
|
16
16
|
* @param {Object} [properties.tileLoader] - A tile loader that can be shared among tilesets in order to share a common cache.
|
|
17
|
-
* @param {Object} [properties.meshCallback] - A callback function that will be called on every mesh
|
|
18
17
|
* @param {Object} [properties.pointsCallback] - A callback function that will be called on every points
|
|
19
18
|
* @param {Object} [properties.onLoadCallback] - A callback function that will be called when the root tile has been loaded
|
|
20
19
|
* @param {Object} [properties.occlusionCullingService] - A service that handles occlusion culling
|
|
@@ -37,7 +36,6 @@ export class InstancedOGC3DTile {
|
|
|
37
36
|
geometricErrorMultiplier?: Object | undefined;
|
|
38
37
|
loadOutsideView?: Object | undefined;
|
|
39
38
|
tileLoader?: Object | undefined;
|
|
40
|
-
meshCallback?: Object | undefined;
|
|
41
39
|
pointsCallback?: Object | undefined;
|
|
42
40
|
onLoadCallback?: Object | undefined;
|
|
43
41
|
occlusionCullingService?: Object | undefined;
|
|
@@ -10,7 +10,6 @@ export class InstancedTile {
|
|
|
10
10
|
* parentRefinement: optional,
|
|
11
11
|
* loadOutsideView: Boolean,
|
|
12
12
|
* tileLoader : InstancedTileLoader,
|
|
13
|
-
* meshCallback: function,
|
|
14
13
|
* cameraOnLoad: camera,
|
|
15
14
|
* parentTile: OGC3DTile,
|
|
16
15
|
* onLoadCallback: function,
|
|
@@ -23,7 +22,6 @@ export class InstancedTile {
|
|
|
23
22
|
uuid: any;
|
|
24
23
|
tileLoader: any;
|
|
25
24
|
master: any;
|
|
26
|
-
meshCallback: any;
|
|
27
25
|
loadOutsideView: any;
|
|
28
26
|
cameraOnLoad: any;
|
|
29
27
|
parentTile: any;
|
|
@@ -44,12 +42,12 @@ export class InstancedTile {
|
|
|
44
42
|
rootPath: any;
|
|
45
43
|
loadJson(json: any, url: any): void;
|
|
46
44
|
setup(properties: any): Promise<void>;
|
|
45
|
+
matrixWorldNeedsUpdate: boolean | undefined;
|
|
47
46
|
isSetup: boolean | undefined;
|
|
48
47
|
isAbsolutePathOrURL(input: any): any;
|
|
49
48
|
assembleURL(root: any, relative: any): string;
|
|
50
49
|
extractQueryParams(url: any, params: any): string;
|
|
51
50
|
load(): void;
|
|
52
|
-
matrixWorldNeedsUpdate: boolean | undefined;
|
|
53
51
|
loadMesh(mesh: any): void;
|
|
54
52
|
dispose(): void;
|
|
55
53
|
parent: any;
|