David Catuhe 5b4fd45d56 4.1.0-beta.20 5 년 전
..
babylon.glTF2Serializer.js e70709f6f5 Nightly 5 년 전
babylon.glTF2Serializer.js.map 8fa875a9a5 Nightly 5 년 전
babylon.glTF2Serializer.min.js 8fa875a9a5 Nightly 5 년 전
babylon.objSerializer.js 811cb39740 Nightly 5 년 전
babylon.objSerializer.js.map 44b09392ee Fix build 5 년 전
babylon.objSerializer.min.js 44b09392ee Fix build 5 년 전
babylonjs.serializers.d.ts 8fa875a9a5 Nightly 5 년 전
babylonjs.serializers.js e70709f6f5 Nightly 5 년 전
babylonjs.serializers.js.map 8fa875a9a5 Nightly 5 년 전
babylonjs.serializers.min.js 8fa875a9a5 Nightly 5 년 전
babylonjs.serializers.module.d.ts 8fa875a9a5 Nightly 5 년 전
package.json 5b4fd45d56 4.1.0-beta.20 5 년 전
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.