David Catuhe 0fba34b709 3.3.0 6 年之前
..
babylon.glTF1FileLoader.d.ts 0fba34b709 3.3.0 6 年之前
babylon.glTF1FileLoader.js 0fba34b709 3.3.0 6 年之前
babylon.glTF1FileLoader.min.js 0fba34b709 3.3.0 6 年之前
babylon.glTF2FileLoader.d.ts 0fba34b709 3.3.0 6 年之前
babylon.glTF2FileLoader.js 0fba34b709 3.3.0 6 年之前
babylon.glTF2FileLoader.min.js 0fba34b709 3.3.0 6 年之前
babylon.glTFFileLoader.d.ts 0fba34b709 3.3.0 6 年之前
babylon.glTFFileLoader.js 0fba34b709 3.3.0 6 年之前
babylon.glTFFileLoader.min.js 0fba34b709 3.3.0 6 年之前
babylon.objFileLoader.d.ts 0fba34b709 3.3.0 6 年之前
babylon.objFileLoader.js 0fba34b709 3.3.0 6 年之前
babylon.objFileLoader.min.js 0fba34b709 3.3.0 6 年之前
babylon.stlFileLoader.d.ts 0fba34b709 3.3.0 6 年之前
babylon.stlFileLoader.js 0fba34b709 3.3.0 6 年之前
babylon.stlFileLoader.min.js 0fba34b709 3.3.0 6 年之前
babylonjs.loaders.d.ts 0fba34b709 3.3.0 6 年之前
babylonjs.loaders.js 0fba34b709 3.3.0 6 年之前
babylonjs.loaders.min.js 0fba34b709 3.3.0 6 年之前
babylonjs.loaders.module.d.ts 0fba34b709 3.3.0 6 年之前
readme.md 0fba34b709 3.3.0 6 年之前

readme.md

Babylon.js Loaders module

For usage documentation please visit http://doc.babylonjs.com/extensions and choose "loaders".

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-loaders

If using TypeScript, the typing needs to be added to tsconfig.json:

    ....
    "types": [
        "babylonjs",
        "babylonjs-loaders",
        ""
    ],
    ....

Afterwards it can be imported to the project using:

import * as BABYLON from 'babylonjs';
import 'babylonjs-loaders';

This will extend Babylon's namespace with the loaders available.

Using webpack to package your project will use the minified js file.