sebavan af99e56f1e 4.1.0-alpha.12 пре 6 година
..
babylon.glTF2Serializer.js b0dcd9b3a0 Nightly пре 6 година
babylon.glTF2Serializer.js.map b0dcd9b3a0 Nightly пре 6 година
babylon.glTF2Serializer.min.js e9551c1496 Nightly пре 6 година
babylon.objSerializer.js b0dcd9b3a0 Nightly пре 6 година
babylon.objSerializer.js.map b0dcd9b3a0 Nightly пре 6 година
babylon.objSerializer.min.js fcf02ec96d Nightly пре 6 година
babylonjs.serializers.d.ts 66f319a15a Nightly пре 6 година
babylonjs.serializers.js b0dcd9b3a0 Nightly пре 6 година
babylonjs.serializers.js.map b0dcd9b3a0 Nightly пре 6 година
babylonjs.serializers.min.js e9551c1496 Nightly пре 6 година
babylonjs.serializers.module.d.ts 66f319a15a Nightly пре 6 година
package.json af99e56f1e 4.1.0-alpha.12 пре 6 година
readme-es6.md 2e710a8ebe dedicated es6 readme пре 6 година
readme.md 241153b81f Readme files for all modules пре 8 година

readme-es6.md

Babylon.js Serializers

Installation instructions

To install using npm :

npm install --save @babylonjs/core @babylonjs/serializers

How to use

Afterwards it can be imported to the your project using:

import { GLTF2Export } from '@babylonjs/serializers/glTF';

And used as usual:

GLTF2Export.GLTFAsync(scene, "fileName").then((gltf) => {
    gltf.downloadFiles();
});

For more information you can have a look at our our ES6 dedicated documentation and the gltf exporter documentation.