David Catuhe 8bd9d43748 Nightly 7 年 前
..
babylon.gui.d.ts b34c6e6b67 Fix Glow/Bloom and Nightly 7 年 前
babylon.gui.js c3f48c63bf beta.3 7 年 前
babylon.gui.min.js 8bd9d43748 Nightly 7 年 前
babylon.gui.module.d.ts b34c6e6b67 Fix Glow/Bloom and Nightly 7 年 前
package.json c3f48c63bf beta.3 7 年 前
readme.md 241153b81f Readme files for all modules 8 年 前

readme.md

Babylon.js GUI module

For usage documentation please visit http://doc.babylonjs.com/overviews/gui

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

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

    ....
    "types": [
        "babylonjs",
        "babylonjs-gui",
        "angularFTW"
    ],
    ....

Afterwards it can be imported to the project using:

import * as GUI from 'babylonjs-gui';

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