sebavan 0f3b57dd46 Nightly hace 5 años
..
babylon.glTF2Serializer.js 0f3b57dd46 Nightly hace 5 años
babylon.glTF2Serializer.js.map 037241bbea Nightly hace 5 años
babylon.glTF2Serializer.min.js 037241bbea Nightly hace 5 años
babylon.objSerializer.js 811cb39740 Nightly hace 5 años
babylon.objSerializer.js.map 44b09392ee Fix build hace 5 años
babylon.objSerializer.min.js 44b09392ee Fix build hace 5 años
babylonjs.serializers.d.ts 037241bbea Nightly hace 5 años
babylonjs.serializers.js 0f3b57dd46 Nightly hace 5 años
babylonjs.serializers.js.map 037241bbea Nightly hace 5 años
babylonjs.serializers.min.js 037241bbea Nightly hace 5 años
babylonjs.serializers.module.d.ts 037241bbea Nightly hace 5 años
package.json a67939532b 4.1.0-beta.18 hace 5 años
readme-es6.md 2e710a8ebe dedicated es6 readme hace 6 años
readme.md 241153b81f Readme files for all modules hace 8 años

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.