Babylon.js Serializers =====================
npm install @onerjs/serializersBabylon.js Serializers
=====================
npm install --save @babylonjs/core @babylonjs/serializers
`
How to use
Afterwards it can be imported to your project using:
`
import { GLTF2Export } from '@babylonjs/serializers/glTF';
`
And used as usual:
`
GLTF2Export.GLTFAsync(scene, "fileName").then((gltf) => {
gltf.downloadFiles();
});
``