David Catuhe 4c378a923a 4.0.0-alpha.14 vor 6 Jahren
..
babylon.gui.d.ts e6f173a898 Expose scrollBiewer scrollbars and fix scroll updates when content change vor 6 Jahren
babylon.gui.js 4c378a923a 4.0.0-alpha.14 vor 6 Jahren
babylon.gui.min.js 4c378a923a 4.0.0-alpha.14 vor 6 Jahren
babylon.gui.min.js.map 4c378a923a 4.0.0-alpha.14 vor 6 Jahren
babylon.gui.module.d.ts e6f173a898 Expose scrollBiewer scrollbars and fix scroll updates when content change vor 6 Jahren
package.json 4c378a923a 4.0.0-alpha.14 vor 6 Jahren
readme.md 241153b81f Readme files for all modules vor 8 Jahren

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.