babylonjs-gui 5.0.0-alpha.57 → 5.0.0-alpha.60
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 +26 -18
- package/babylon.gui.js.map +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.module.d.ts +12 -0
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
|
@@ -524,6 +524,12 @@ declare module "babylonjs-gui/2D/advancedDynamicTexture" {
|
|
|
524
524
|
*/
|
|
525
525
|
getDescendants(directDescendantsOnly?: boolean, predicate?: (control: Control) => boolean): Control[];
|
|
526
526
|
/**
|
|
527
|
+
* Will return all controls with the given type name
|
|
528
|
+
* @param typeName defines the type name to search for
|
|
529
|
+
* @returns an array of all controls found
|
|
530
|
+
*/
|
|
531
|
+
getControlsByType(typeName: string): Control[];
|
|
532
|
+
/**
|
|
527
533
|
* Will return the first control with the given name
|
|
528
534
|
* @param name defines the name to search for
|
|
529
535
|
* @return the first control found or null
|
|
@@ -7551,6 +7557,12 @@ declare module BABYLON.GUI {
|
|
|
7551
7557
|
*/
|
|
7552
7558
|
getDescendants(directDescendantsOnly?: boolean, predicate?: (control: Control) => boolean): Control[];
|
|
7553
7559
|
/**
|
|
7560
|
+
* Will return all controls with the given type name
|
|
7561
|
+
* @param typeName defines the type name to search for
|
|
7562
|
+
* @returns an array of all controls found
|
|
7563
|
+
*/
|
|
7564
|
+
getControlsByType(typeName: string): Control[];
|
|
7565
|
+
/**
|
|
7554
7566
|
* Will return the first control with the given name
|
|
7555
7567
|
* @param name defines the name to search for
|
|
7556
7568
|
* @return the first control found or null
|
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-alpha.
|
|
7
|
+
"version": "5.0.0-alpha.60",
|
|
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-alpha.
|
|
31
|
+
"babylonjs": "5.0.0-alpha.60"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": "*"
|