babylonjs-gui 5.0.0-rc.3 → 5.0.0-rc.4
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/babylon.gui.js +83 -82
- package/babylon.gui.js.map +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.module.d.ts +2 -2
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
|
@@ -1326,7 +1326,7 @@ declare module "babylonjs-gui/2D/controls/control" {
|
|
|
1326
1326
|
* Mark control element as dirty
|
|
1327
1327
|
* @param force force non visible elements to be marked too
|
|
1328
1328
|
*/
|
|
1329
|
-
markAsDirty(force
|
|
1329
|
+
markAsDirty(force?: boolean): void;
|
|
1330
1330
|
/**
|
|
1331
1331
|
* Mark the element and its children as dirty
|
|
1332
1332
|
*/
|
|
@@ -8497,7 +8497,7 @@ declare module BABYLON.GUI {
|
|
|
8497
8497
|
* Mark control element as dirty
|
|
8498
8498
|
* @param force force non visible elements to be marked too
|
|
8499
8499
|
*/
|
|
8500
|
-
markAsDirty(force
|
|
8500
|
+
markAsDirty(force?: boolean): void;
|
|
8501
8501
|
/**
|
|
8502
8502
|
* Mark the element and its children as dirty
|
|
8503
8503
|
*/
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
},
|
|
5
5
|
"name": "babylonjs-gui",
|
|
6
6
|
"description": "The Babylon.js GUI library is an extension you can use to generate interactive user interface. It is build on top of the DynamicTexture.",
|
|
7
|
-
"version": "5.0.0-rc.
|
|
7
|
+
"version": "5.0.0-rc.4",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/BabylonJS/Babylon.js.git"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"babylonjs": "5.0.0-rc.
|
|
31
|
+
"babylonjs": "5.0.0-rc.4"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": "*"
|