sebastien bd050962ac Depth Renderer Fix and Nightly 7 anos atrás
..
babylon.glTF2Serializer.d.ts 6425d61fd7 Nightly 7 anos atrás
babylon.glTF2Serializer.js 7ffbc66745 Moved to --strict everywhere 7 anos atrás
babylon.glTF2Serializer.min.js bd050962ac Depth Renderer Fix and Nightly 7 anos atrás
babylon.objSerializer.d.ts e8ca73d095 Nightly 8 anos atrás
babylon.objSerializer.js 7ffbc66745 Moved to --strict everywhere 7 anos atrás
babylon.objSerializer.min.js 7ffbc66745 Moved to --strict everywhere 7 anos atrás
babylonjs.serializers.js 09709b56f0 fixing playground and viewer-build 7 anos atrás
babylonjs.serializers.min.js bd050962ac Depth Renderer Fix and Nightly 7 anos atrás
babylonjs.serializers.module.d.ts 5c4a0ee5e4 Fix fresnel serialization issue 7 anos atrás
package.json aa866a81de npm update 7 anos atrás
readme.md 241153b81f Readme files for all modules 8 anos atrás

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.