David Catuhe b93c44f06f Moving all codebase to TS 2.8.1 7 years ago
..
babylon.glTF2Serializer.d.ts 43cea41531 Nightly 7 years ago
babylon.glTF2Serializer.js b93c44f06f Moving all codebase to TS 2.8.1 7 years ago
babylon.glTF2Serializer.min.js b93c44f06f Moving all codebase to TS 2.8.1 7 years ago
babylon.objSerializer.d.ts e8ca73d095 Nightly 8 years ago
babylon.objSerializer.js b93c44f06f Moving all codebase to TS 2.8.1 7 years ago
babylon.objSerializer.min.js b93c44f06f Moving all codebase to TS 2.8.1 7 years ago
babylonjs.serializers.d.ts 034b01a4b2 presenting declaration dependencies 7 years ago
babylonjs.serializers.js b93c44f06f Moving all codebase to TS 2.8.1 7 years ago
babylonjs.serializers.min.js 54bd696346 First try to update bone scaling mechanism 7 years ago
babylonjs.serializers.module.d.ts 034b01a4b2 presenting declaration dependencies 7 years ago
package.json 0b56aa4ce0 npm update, 3.2.0-beta.4 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.