David Catuhe 8f6a15dab4 Fixed #2988 7 gadi atpakaļ
..
babylon.objSerializer.d.ts e8ca73d095 Nightly 8 gadi atpakaļ
babylon.objSerializer.js 8f6a15dab4 Fixed #2988 7 gadi atpakaļ
babylon.objSerializer.min.js d9c1002dd4 nightly 8 gadi atpakaļ
babylonjs.serializers.js 8f6a15dab4 Fixed #2988 7 gadi atpakaļ
babylonjs.serializers.min.js 0b21671dff Nightly 7 gadi atpakaļ
babylonjs.serializers.module.d.ts 386be42463 Missing files for npm packages (generated) 8 gadi atpakaļ
package.json 7d7506145b adding readme.md files to the package json 8 gadi atpakaļ
readme.md 241153b81f Readme files for all modules 8 gadi atpakaļ

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.