babylonjs-gui 5.42.0 → 5.42.2
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.d.ts +2 -0
- package/babylon.gui.js +33 -6
- package/babylon.gui.js.map +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +4 -0
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
@@ -91,6 +91,7 @@ export class AdvancedDynamicTexture extends DynamicTexture {
|
|
91
91
|
private _canvasPointerOutObserver;
|
92
92
|
private _canvasBlurObserver;
|
93
93
|
private _controlAddedObserver;
|
94
|
+
private _controlRemovedObserver;
|
94
95
|
private _background;
|
95
96
|
/** @internal */
|
96
97
|
_rootContainer: Container;
|
@@ -126,6 +127,7 @@ export class AdvancedDynamicTexture extends DynamicTexture {
|
|
126
127
|
private _rootElement;
|
127
128
|
private _cursorChanged;
|
128
129
|
private _defaultMousePointerId;
|
130
|
+
private _rootChildrenHaveChanged;
|
129
131
|
/** @internal */
|
130
132
|
_capturedPointerIds: Set<number>;
|
131
133
|
/** @internal */
|
@@ -8553,6 +8555,7 @@ declare module BABYLON.GUI {
|
|
8553
8555
|
private _canvasPointerOutObserver;
|
8554
8556
|
private _canvasBlurObserver;
|
8555
8557
|
private _controlAddedObserver;
|
8558
|
+
private _controlRemovedObserver;
|
8556
8559
|
private _background;
|
8557
8560
|
/** @internal */
|
8558
8561
|
_rootContainer: Container;
|
@@ -8588,6 +8591,7 @@ declare module BABYLON.GUI {
|
|
8588
8591
|
private _rootElement;
|
8589
8592
|
private _cursorChanged;
|
8590
8593
|
private _defaultMousePointerId;
|
8594
|
+
private _rootChildrenHaveChanged;
|
8591
8595
|
/** @internal */
|
8592
8596
|
_capturedPointerIds: Set<number>;
|
8593
8597
|
/** @internal */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babylonjs-gui",
|
3
|
-
"version": "5.42.
|
3
|
+
"version": "5.42.2",
|
4
4
|
"main": "babylon.gui.js",
|
5
5
|
"types": "babylon.gui.module.d.ts",
|
6
6
|
"files": [
|
@@ -14,7 +14,7 @@
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
15
15
|
},
|
16
16
|
"dependencies": {
|
17
|
-
"babylonjs": "^5.42.
|
17
|
+
"babylonjs": "^5.42.2"
|
18
18
|
},
|
19
19
|
"devDependencies": {
|
20
20
|
"@dev/build-tools": "1.0.0",
|