David Catuhe 1dd71f9e12 Fix bug with particle emitter clone 7 years ago
..
babylon.glTF2Serializer.d.ts 30f1309bd9 Add new mesh.getLODLevels() + nightly 7 years ago
babylon.glTF2Serializer.js 30f1309bd9 Add new mesh.getLODLevels() + nightly 7 years ago
babylon.glTF2Serializer.min.js 1dd71f9e12 Fix bug with particle emitter clone 7 years ago
babylon.objSerializer.d.ts e8ca73d095 Nightly 8 years ago
babylon.objSerializer.js 2c79a068d4 Nightly 7 years ago
babylon.objSerializer.min.js 97c5d80016 fixed #2982!!!!!!! 7 years ago
babylonjs.serializers.js 30f1309bd9 Add new mesh.getLODLevels() + nightly 7 years ago
babylonjs.serializers.min.js 1dd71f9e12 Fix bug with particle emitter clone 7 years ago
babylonjs.serializers.module.d.ts 30f1309bd9 Add new mesh.getLODLevels() + nightly 7 years ago
package.json c18d33587d main file is now the minified version, package.json general cleanup 7 years ago
readme.md 241153b81f Readme files for all modules 8 years ago

readme.md

Babylon.js Serializers

Installation instructions

CDN

Compiled js files (minified and source) are offered on our public CDN here:

NPM

To install using npm :

npm install --save babylonjs babylonjs-serializers

If using TypeScript, the typing needs to be added to tsconfig.json:

    ....
    "types": [
        "babylonjs",
        "babylonjs-serializers",
        "oneMoreDependencyThatIReallyNeed"
    ],
    ....

Afterwards it can be imported to the project using:

import * as BABYLON from 'babylonjs';
import from 'babylonjs-serializers';

This will extend Babylon's namespace with the serializers currently available.

Using webpack to package your project will use the minified js file.