babylonjs-gui 5.0.0-beta.6 → 5.0.0-beta.8-snapshot

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/readme.md DELETED
@@ -1,41 +0,0 @@
1
- Babylon.js GUI module
2
- =====================
3
-
4
- For usage documentation please visit http://doc.babylonjs.com/overviews/gui
5
-
6
- # Installation instructions
7
-
8
- ## CDN
9
-
10
- Compiled js files (minified and source) are offered on our public CDN here:
11
-
12
- * https://preview.babylonjs.com/gui/babylon.gui.js
13
- * https://preview.babylonjs.com/gui/babylon.gui.min.js
14
-
15
- ## NPM
16
-
17
- To install using npm :
18
-
19
- ```
20
- npm install --save babylonjs babylonjs-gui
21
- ```
22
-
23
- If using TypeScript, the typing needs to be added to tsconfig.json:
24
-
25
- ```
26
- ....
27
- "types": [
28
- "babylonjs",
29
- "babylonjs-gui",
30
- "otherImportsYouMightNeed"
31
- ],
32
- ....
33
- ```
34
-
35
- Afterwards it can be imported to the project using:
36
-
37
- ```
38
- import * as GUI from 'babylonjs-gui';
39
- ```
40
-
41
- Using webpack to package your project will use the minified js file.