@jdultra/threedtiles 9.0.2 → 9.0.4
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 +6 -1
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -17,7 +17,12 @@ The fastest 3DTiles viewer for three.js
|
|
|
17
17
|
|
|
18
18
|
[Instanced Tileset (pilot a swarm of highly detailed spaceships)](https://www.jdultra.com/instanced/index.html)
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
|
|
21
|
+
install the library and threejs if not done already:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
npm install three @jdultra/threedtiles
|
|
25
|
+
```
|
|
21
26
|
|
|
22
27
|
Adding a tileset to a scene is as easy as :
|
|
23
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jdultra/threedtiles",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.4",
|
|
4
4
|
"description": "An OGC 3DTiles viewer for Three.js",
|
|
5
5
|
"main": "dist/threedtiles.min.js",
|
|
6
6
|
"files": [
|
|
@@ -28,13 +28,12 @@
|
|
|
28
28
|
"author": "Emeric Beaufays",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
|
|
31
|
-
"
|
|
32
|
-
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"three": "^0.149.0",
|
|
33
33
|
"js-utils-z": "^1.2.1",
|
|
34
34
|
"path-browserify": "^1.0.1",
|
|
35
35
|
"regenerator-runtime": "^0.13.11",
|
|
36
36
|
"set-interval-async": "^2.0.3",
|
|
37
|
-
"three": "^0.141.0",
|
|
38
37
|
"uuid": "^8.3.2"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|