David Catuhe 1766e3074c Merge branch 'master' into pickerdialog 6 yıl önce
..
babylon.glTF1FileLoader.d.ts 439111b311 Nightly 7 yıl önce
babylon.glTF1FileLoader.js 55ac713fc6 Nightly 6 yıl önce
babylon.glTF1FileLoader.min.js 90eb343a57 Changed function parameters to include options 6 yıl önce
babylon.glTF2FileLoader.d.ts b1cfb7a7a9 Nightly 6 yıl önce
babylon.glTF2FileLoader.js 638e55a731 Nightly 6 yıl önce
babylon.glTF2FileLoader.min.js 638e55a731 Nightly 6 yıl önce
babylon.glTFFileLoader.d.ts b1cfb7a7a9 Nightly 6 yıl önce
babylon.glTFFileLoader.js 638e55a731 Nightly 6 yıl önce
babylon.glTFFileLoader.min.js 638e55a731 Nightly 6 yıl önce
babylon.objFileLoader.d.ts aacd44de01 Nightly + move BBrendering to RenderingGroup 7 yıl önce
babylon.objFileLoader.js a241e10ab7 Final merge 7 yıl önce
babylon.objFileLoader.min.js fd36b5f82d Nightly 7 yıl önce
babylon.stlFileLoader.d.ts eb720ae1d7 Nightly 7 yıl önce
babylon.stlFileLoader.js 85a802b8e6 Update d.txt 7 yıl önce
babylon.stlFileLoader.min.js eb720ae1d7 Nightly 7 yıl önce
babylonjs.loaders.d.ts b1cfb7a7a9 Nightly 6 yıl önce
babylonjs.loaders.js 638e55a731 Nightly 6 yıl önce
babylonjs.loaders.min.js 638e55a731 Nightly 6 yıl önce
babylonjs.loaders.module.d.ts b1cfb7a7a9 Nightly 6 yıl önce
package.json d1ca69601c 4.0.0-alpha.8 6 yıl önce
readme.md 2561068aad Small error in the readme files of the submodules. 7 yıl önce

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.