@jdultra/threedtiles 13.0.19 → 13.0.21

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.
@@ -32,7 +32,10 @@ export class OGC3DTile extends THREE.Object3D<THREE.Object3DEventMap> {
32
32
  * @param {DracoLoader} [properties.dracoLoader = undefined] - optional a draco loader (three/addons).
33
33
  * @param {KTX2Loader} [properties.ktx2Loader = undefined] - optional a ktx2 loader (three/addons).
34
34
  * @param {Number} [properties.distanceBias = 1] - optional a bias that allows loading more or less detail closer to the camera relative to far away. The value should be a positive number. A value below 1 loads less detail near the camera and a value above 1 loads more detail near the camera. This needs to be compensated by the geometricErrorMultiplier in order to load a reasonable number of tiles.
35
- * @param {String} [properties.loadingStrategy = "INCREMENTAL"] - optional a strategy for loading tiles "INCREMENTAL" loads intermediate LODs while "IMMEDIATE" skips intermediate LODs.
35
+ * @param {String} [properties.loadingStrategy = "INCREMENTAL"] - optional a strategy for loading tiles
36
+ * - "INCREMENTAL" loads intermediate LODs and will load nearer tiles first
37
+ * - "PERLEVEL" loads intermediate LODs and loads nearer tiles first but waits for all tiles of the lowest level to be loaded before loading higher detail tiles
38
+ * - "IMMEDIATE" skips intermediate LODs. tiles are missing until loaded when moving to a new area
36
39
  * @param {String} [properties.drawBoundingVolume = false] - optional draws the bounding volume (may cause flickering)
37
40
  * @param {String} [properties.splatsFragmentShader = undefined] - optional pass a custom fragment shader for rendering splats
38
41
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jdultra/threedtiles",
3
- "version": "13.0.19",
3
+ "version": "13.0.21",
4
4
  "author": "Emeric Beaufays",
5
5
  "description": "An OGC 3DTiles viewer for Three.js",
6
6
  "main": "dist/threedtiles.cjs.js",