sebavan 2e710a8ebe dedicated es6 readme 7 anni fa
..
babylon.glTF2Serializer.js 9db553eb1c nightly (with the new modules!!!) 7 anni fa
babylon.glTF2Serializer.js.map 0d5dff9e64 Nightly 7 anni fa
babylon.glTF2Serializer.min.js 9db553eb1c nightly (with the new modules!!!) 7 anni fa
babylon.objSerializer.js 9db553eb1c nightly (with the new modules!!!) 7 anni fa
babylon.objSerializer.js.map 9db553eb1c nightly (with the new modules!!!) 7 anni fa
babylon.objSerializer.min.js 9db553eb1c nightly (with the new modules!!!) 7 anni fa
babylonjs.serializers.d.ts 9db553eb1c nightly (with the new modules!!!) 7 anni fa
babylonjs.serializers.js 9db553eb1c nightly (with the new modules!!!) 7 anni fa
babylonjs.serializers.js.map 0d5dff9e64 Nightly 7 anni fa
babylonjs.serializers.min.js 9db553eb1c nightly (with the new modules!!!) 7 anni fa
babylonjs.serializers.module.d.ts 9db553eb1c nightly (with the new modules!!!) 7 anni fa
package.json 4cc93c8ece 4.0.0-alpha.18 7 anni fa
readme-es6.md 2e710a8ebe dedicated es6 readme 7 anni fa
readme.md 241153b81f Readme files for all modules 8 anni fa

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.