babylonjs-gui 5.20.0 → 5.21.0
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 +13 -0
- 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
|
@@ -125,6 +125,8 @@ export class AdvancedDynamicTexture extends DynamicTexture {
|
|
|
125
125
|
private _cursorChanged;
|
|
126
126
|
private _defaultMousePointerId;
|
|
127
127
|
/** @hidden */
|
|
128
|
+
_capturedPointerIds: Set<number>;
|
|
129
|
+
/** @hidden */
|
|
128
130
|
_numLayoutCalls: number;
|
|
129
131
|
/** Gets the number of layout calls made the last time the ADT has been rendered */
|
|
130
132
|
get numLayoutCalls(): number;
|
|
@@ -8119,6 +8121,8 @@ declare module BABYLON.GUI {
|
|
|
8119
8121
|
private _cursorChanged;
|
|
8120
8122
|
private _defaultMousePointerId;
|
|
8121
8123
|
/** @hidden */
|
|
8124
|
+
_capturedPointerIds: Set<number>;
|
|
8125
|
+
/** @hidden */
|
|
8122
8126
|
_numLayoutCalls: number;
|
|
8123
8127
|
/** Gets the number of layout calls made the last time the ADT has been rendered */
|
|
8124
8128
|
get numLayoutCalls(): number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.21.0",
|
|
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.
|
|
17
|
+
"babylonjs": "^5.21.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|