David Catuhe 51dc523ab6 Fux bug with request splicing 7 éve
..
babylon.glTF2Serializer.d.ts dc36f7b486 Nightly 7 éve
babylon.glTF2Serializer.js dc36f7b486 Nightly 7 éve
babylon.glTF2Serializer.min.js 51dc523ab6 Fux bug with request splicing 7 éve
babylon.objSerializer.d.ts e8ca73d095 Nightly 8 éve
babylon.objSerializer.js 2c79a068d4 Nightly 7 éve
babylon.objSerializer.min.js 97c5d80016 fixed #2982!!!!!!! 7 éve
babylonjs.serializers.js dc36f7b486 Nightly 7 éve
babylonjs.serializers.min.js 51dc523ab6 Fux bug with request splicing 7 éve
babylonjs.serializers.module.d.ts dd74ea9825 First nightly with new module support 7 éve
package.json 31b33b6443 npm update 3.2.0-alpha4 7 éve
readme.md 241153b81f Readme files for all modules 8 éve

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.