David `Deltakosh` Catuhe f661893e03 4.2.0-beta.6 пре 4 година
..
babylon.glTF2Serializer.js c4f27e6458 Nightly пре 5 година
babylon.glTF2Serializer.js.map c4f27e6458 Nightly пре 5 година
babylon.glTF2Serializer.min.js c4f27e6458 Nightly пре 5 година
babylon.objSerializer.js f3aa53f12e nightly пре 5 година
babylon.objSerializer.js.map f3aa53f12e nightly пре 5 година
babylon.objSerializer.min.js 8af5581d41 Nightly пре 5 година
babylonjs.serializers.d.ts d2916967af nightly пре 5 година
babylonjs.serializers.js c4f27e6458 Nightly пре 5 година
babylonjs.serializers.js.map c4f27e6458 Nightly пре 5 година
babylonjs.serializers.min.js c4f27e6458 Nightly пре 5 година
babylonjs.serializers.module.d.ts d2916967af nightly пре 5 година
package.json f661893e03 4.2.0-beta.6 пре 4 година
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.