@loaders.gl/tile-converter 3.2.11 → 3.2.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/tile-converter",
3
- "version": "3.2.11",
3
+ "version": "3.2.13",
4
4
  "description": "Converter",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -43,19 +43,19 @@
43
43
  "build-3d-tiles-attributes-worker": "esbuild src/workers/3d-tiles-attributes-worker.ts --outfile=dist/3d-tiles-attributes-worker.js --platform=node --target=esnext,node12 --minify --bundle --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
44
44
  },
45
45
  "dependencies": {
46
- "@loaders.gl/3d-tiles": "3.2.11",
47
- "@loaders.gl/crypto": "3.2.11",
48
- "@loaders.gl/draco": "3.2.11",
49
- "@loaders.gl/gltf": "3.2.11",
50
- "@loaders.gl/i3s": "3.2.11",
51
- "@loaders.gl/images": "3.2.11",
52
- "@loaders.gl/loader-utils": "3.2.11",
53
- "@loaders.gl/polyfills": "3.2.11",
54
- "@loaders.gl/schema": "3.2.11",
55
- "@loaders.gl/textures": "3.2.11",
56
- "@loaders.gl/tiles": "3.2.11",
57
- "@loaders.gl/worker-utils": "3.2.11",
58
- "@loaders.gl/zip": "3.2.11",
46
+ "@loaders.gl/3d-tiles": "3.2.13",
47
+ "@loaders.gl/crypto": "3.2.13",
48
+ "@loaders.gl/draco": "3.2.13",
49
+ "@loaders.gl/gltf": "3.2.13",
50
+ "@loaders.gl/i3s": "3.2.13",
51
+ "@loaders.gl/images": "3.2.13",
52
+ "@loaders.gl/loader-utils": "3.2.13",
53
+ "@loaders.gl/polyfills": "3.2.13",
54
+ "@loaders.gl/schema": "3.2.13",
55
+ "@loaders.gl/textures": "3.2.13",
56
+ "@loaders.gl/tiles": "3.2.13",
57
+ "@loaders.gl/worker-utils": "3.2.13",
58
+ "@loaders.gl/zip": "3.2.13",
59
59
  "@luma.gl/engine": "^8.5.4",
60
60
  "@math.gl/core": "^3.5.1",
61
61
  "@math.gl/culling": "^3.5.1",
@@ -75,5 +75,5 @@
75
75
  "peerDependencies": {
76
76
  "@loaders.gl/core": "^3.2.0"
77
77
  },
78
- "gitHead": "580a784fe09e381fc6c2139a3d30882ffc3fa639"
78
+ "gitHead": "ad966d78d6480aaae21898074e824f576143d67f"
79
79
  }
@@ -575,9 +575,7 @@ export default class I3SConverter {
575
575
  parentId: number,
576
576
  level: number
577
577
  ): Promise<Node3DIndexDocument[]> {
578
- if (this.validate) {
579
- this._checkAddRefinementTypeForTile(sourceTile);
580
- }
578
+ this._checkAddRefinementTypeForTile(sourceTile);
581
579
 
582
580
  await this._updateTilesetOptions();
583
581
  await this.sourceTileset!._loadTile(sourceTile);
@@ -15,15 +15,15 @@ const MATERIAL_DEFINITION_INFO_PARAMS = () => ({
15
15
  },
16
16
  ambient: {
17
17
  path: 'ambient',
18
- default: [1, 1, 1, 1]
18
+ default: [1, 1, 1]
19
19
  },
20
20
  diffuse: {
21
21
  path: 'diffuse',
22
- default: [1, 1, 1, 1]
22
+ default: [1, 1, 1]
23
23
  },
24
24
  specular: {
25
25
  path: 'specular',
26
- default: [0, 0, 0, 0]
26
+ default: [0, 0, 0]
27
27
  },
28
28
  useVertexColorAlpha: {
29
29
  path: 'useVertexColorAlpha',