Babylon.js GUI module =====================
npm install babylonjs-guiBabylon.js GUI module
=====================
For usage documentation please visit https://doc.babylonjs.com/overviews/gui
npm install --save babylonjs babylonjs-gui
`
If using TypeScript, the typing needs to be added to tsconfig.json:
`
....
"types": [
"babylonjs",
"babylonjs-gui",
"otherImportsYouMightNeed"
],
....
`
Afterwards it can be imported to the project using:
`
import * as GUI from 'babylonjs-gui';
``