David Catuhe 69b51a2764 Nightly 6 years ago
..
babylon.gui.d.ts a8d1c34af6 Fix #5638 6 years ago
babylon.gui.js 69b51a2764 Nightly 6 years ago
babylon.gui.js.map 69b51a2764 Nightly 6 years ago
babylon.gui.min.js 6fc46aeb15 nightly 6 years ago
babylon.gui.module.d.ts a8d1c34af6 Fix #5638 6 years ago
package.json 300ee88d61 4.0.0-alpha.32 6 years ago
readme-es6.md 2e710a8ebe dedicated es6 readme 6 years ago
readme.md 241153b81f Readme files for all modules 8 years ago

readme-es6.md

Babylon.js GUI module

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

Installation instructions

To install using npm :

npm install --save @babylonjs/core @babylonjs/gui

How to use

Afterwards it can be imported to the your project using:

import { AdvancedDynamicTexture } from '@babylonjs/gui/2D';

And used as usual:

// Some awesome code
// Creates the post process
let postProcess = new AdvancedDynamicTexture("adt", 128, 128, scene);
// Some more awesome code

For more information you can have a look at our our ES6 dedicated documentation.