David Catuhe 39591ffde4 Nightly 6 年之前
..
babylon.glTF2Serializer.d.ts 7006410446 Hide unwanted namespace 7 年之前
babylon.glTF2Serializer.js 30ee8fb65f Nightly 7 年之前
babylon.glTF2Serializer.min.js 39591ffde4 Nightly 6 年之前
babylon.objSerializer.d.ts e8ca73d095 Nightly 8 年之前
babylon.objSerializer.js 35127d5942 Fix GUI3D containers 7 年之前
babylon.objSerializer.min.js eb720ae1d7 Nightly 7 年之前
babylonjs.serializers.d.ts 7006410446 Hide unwanted namespace 7 年之前
babylonjs.serializers.js 30ee8fb65f Nightly 7 年之前
babylonjs.serializers.min.js 39591ffde4 Nightly 6 年之前
babylonjs.serializers.module.d.ts 7006410446 Hide unwanted namespace 7 年之前
package.json cab7f99332 Publish 6 年之前
readme.md 241153b81f Readme files for all modules 8 年之前

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.