@jdultra/threedtiles 6.0.1 → 6.0.2

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 CHANGED
@@ -34,7 +34,16 @@ setInterval(function () {
34
34
  }, 20);
35
35
  ```
36
36
 
37
- Currently, the library is limmited to B3DM files.
37
+ The library is limmited to B3DM and glb/gltf tiles.
38
+
39
+ Here is a simple project : [Getting started](https://drive.google.com/file/d/1kJ-yfYmy8ShOMMPPXgqW2gMgGkLOIidf/view?usp=share_link)
40
+
41
+ Unzip and run :
42
+
43
+ > npm install
44
+
45
+ > npm run dev
46
+
38
47
 
39
48
  ## Features
40
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jdultra/threedtiles",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "An OGC 3DTiles viewer for Three.js",
5
5
  "main": "tileset.js",
6
6
  "scripts": {
@@ -378,9 +378,6 @@ class OGC3DTile extends THREE.Object3D {
378
378
  if (allChildrenReady) {
379
379
  self.changeContentVisibility(false);
380
380
  }
381
- else{
382
- console.log("loading...")
383
- }
384
381
  }
385
382
  }
386
383