David Catuhe d5aa02c7e5 Nightly hace 7 años
..
babylon.glTF1FileLoader.d.ts a69fc1e14d Nightly hace 7 años
babylon.glTF1FileLoader.js a69fc1e14d Nightly hace 7 años
babylon.glTF1FileLoader.min.js d5aa02c7e5 Nightly hace 7 años
babylon.glTF2FileLoader.d.ts a69fc1e14d Nightly hace 7 años
babylon.glTF2FileLoader.js a69fc1e14d Nightly hace 7 años
babylon.glTF2FileLoader.min.js d5aa02c7e5 Nightly hace 7 años
babylon.glTFFileLoader.d.ts a69fc1e14d Nightly hace 7 años
babylon.glTFFileLoader.js a69fc1e14d Nightly hace 7 años
babylon.glTFFileLoader.min.js d5aa02c7e5 Nightly hace 7 años
babylon.objFileLoader.d.ts e44ece6d73 New gltf loader - nightly hace 7 años
babylon.objFileLoader.js e44ece6d73 New gltf loader - nightly hace 7 años
babylon.objFileLoader.min.js d5aa02c7e5 Nightly hace 7 años
babylon.stlFileLoader.d.ts e44ece6d73 New gltf loader - nightly hace 7 años
babylon.stlFileLoader.js e44ece6d73 New gltf loader - nightly hace 7 años
babylon.stlFileLoader.min.js e44ece6d73 New gltf loader - nightly hace 7 años
babylonjs.loaders.js a69fc1e14d Nightly hace 7 años
babylonjs.loaders.min.js d5aa02c7e5 Nightly hace 7 años
babylonjs.loaders.module.d.ts a69fc1e14d Nightly hace 7 años
package.json cbbeaf7937 npm 3.2.0-alphaB hace 7 años
readme.md 2561068aad Small error in the readme files of the submodules. hace 7 años

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.