@babylonjs/loaders 7.8.1 → 7.9.0
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 +3 -3
- package/readme.md +4 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/loaders",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.9.0",
|
4
4
|
"main": "index.js",
|
5
5
|
"module": "index.js",
|
6
6
|
"types": "index.d.ts",
|
@@ -18,10 +18,10 @@
|
|
18
18
|
"postcompile": "build-tools -c add-js-to-es6"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
|
-
"@babylonjs/core": "^7.
|
21
|
+
"@babylonjs/core": "^7.9.0",
|
22
22
|
"@dev/build-tools": "^1.0.0",
|
23
23
|
"@lts/loaders": "^1.0.0",
|
24
|
-
"babylonjs-gltf2interface": "^7.
|
24
|
+
"babylonjs-gltf2interface": "^7.9.0"
|
25
25
|
},
|
26
26
|
"peerDependencies": {
|
27
27
|
"@babylonjs/core": "^7.0.0",
|
package/readme.md
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
Babylon.js Loaders module
|
2
|
-
=====================
|
1
|
+
# Babylon.js Loaders module
|
3
2
|
|
4
3
|
For usage documentation please visit https://doc.babylonjs.com/extensions and choose "loaders".
|
5
4
|
|
@@ -7,15 +6,15 @@ For usage documentation please visit https://doc.babylonjs.com/extensions and ch
|
|
7
6
|
|
8
7
|
To install using npm :
|
9
8
|
|
10
|
-
```
|
11
|
-
npm install
|
9
|
+
```shell
|
10
|
+
npm install @babylonjs/core @babylonjs/loaders
|
12
11
|
```
|
13
12
|
|
14
13
|
# How to use
|
15
14
|
|
16
15
|
Afterwards it can be imported to your project using:
|
17
16
|
|
18
|
-
```
|
17
|
+
```javascript
|
19
18
|
import "@babylonjs/loaders/glTF";
|
20
19
|
```
|
21
20
|
|