David Catuhe c72b0eb231 Nightly 7 سال پیش
..
babylon.glTF1FileLoader.d.ts 0be872717b Nightly2 7 سال پیش
babylon.glTF1FileLoader.js 0be872717b Nightly2 7 سال پیش
babylon.glTF1FileLoader.min.js 0be872717b Nightly2 7 سال پیش
babylon.glTF2FileLoader.d.ts c72b0eb231 Nightly 7 سال پیش
babylon.glTF2FileLoader.js c72b0eb231 Nightly 7 سال پیش
babylon.glTF2FileLoader.min.js c72b0eb231 Nightly 7 سال پیش
babylon.glTFFileLoader.d.ts c72b0eb231 Nightly 7 سال پیش
babylon.glTFFileLoader.js c72b0eb231 Nightly 7 سال پیش
babylon.glTFFileLoader.min.js c72b0eb231 Nightly 7 سال پیش
babylon.objFileLoader.d.ts 97c5d80016 fixed #2982!!!!!!! 7 سال پیش
babylon.objFileLoader.js 2c79a068d4 Nightly 7 سال پیش
babylon.objFileLoader.min.js b80decd966 Added TransformNode class 7 سال پیش
babylon.stlFileLoader.d.ts 97c5d80016 fixed #2982!!!!!!! 7 سال پیش
babylon.stlFileLoader.js 2c79a068d4 Nightly 7 سال پیش
babylon.stlFileLoader.min.js b942e86a05 Monstro refactor: Enabling noImplicitAny on all repo 7 سال پیش
babylonjs.loaders.js c72b0eb231 Nightly 7 سال پیش
babylonjs.loaders.min.js c72b0eb231 Nightly 7 سال پیش
babylonjs.loaders.module.d.ts c72b0eb231 Nightly 7 سال پیش
package.json 4ebd9453a2 npm update 7 سال پیش
readme.md 2561068aad Small error in the readme files of the submodules. 7 سال پیش

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.