David Catuhe 95ae80cee4 Fixed #2946 před 8 roky
..
babylon.gui.d.ts 76f4bf0e97 Merge master před 8 roky
babylon.gui.js c272bbbcdf Nightly před 8 roky
babylon.gui.min.js 95ae80cee4 Fixed #2946 před 8 roky
babylon.gui.module.d.ts 76f4bf0e97 Merge master před 8 roky
package.json 7d7506145b adding readme.md files to the package json před 8 roky
readme.md 241153b81f Readme files for all modules před 8 roky

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.