babylonjs-gui 7.1.0 → 7.2.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 +12 -0
- package/babylon.gui.js +32 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +24 -0
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
@@ -6247,6 +6247,18 @@ export class Slider3D extends Control3D {
|
|
6247
6247
|
* Gets the slider backplate material used by this control
|
6248
6248
|
*/
|
6249
6249
|
get sliderBackplateMaterial(): MRDLBackplateMaterial;
|
6250
|
+
/**
|
6251
|
+
* Gets the slider bar mesh used by this control
|
6252
|
+
*/
|
6253
|
+
get sliderBar(): AbstractMesh;
|
6254
|
+
/**
|
6255
|
+
* Gets the slider thumb mesh used by this control
|
6256
|
+
*/
|
6257
|
+
get sliderThumb(): AbstractMesh;
|
6258
|
+
/**
|
6259
|
+
* Gets the slider backplate mesh used by this control
|
6260
|
+
*/
|
6261
|
+
get sliderBackplate(): AbstractMesh;
|
6250
6262
|
/** Sets a boolean indicating if the control is visible */
|
6251
6263
|
set isVisible(value: boolean);
|
6252
6264
|
protected _createNode(scene: Scene): TransformNode;
|
@@ -14631,6 +14643,18 @@ declare module BABYLON.GUI {
|
|
14631
14643
|
* Gets the slider backplate material used by this control
|
14632
14644
|
*/
|
14633
14645
|
get sliderBackplateMaterial(): MRDLBackplateMaterial;
|
14646
|
+
/**
|
14647
|
+
* Gets the slider bar mesh used by this control
|
14648
|
+
*/
|
14649
|
+
get sliderBar(): BABYLON.AbstractMesh;
|
14650
|
+
/**
|
14651
|
+
* Gets the slider thumb mesh used by this control
|
14652
|
+
*/
|
14653
|
+
get sliderThumb(): BABYLON.AbstractMesh;
|
14654
|
+
/**
|
14655
|
+
* Gets the slider backplate mesh used by this control
|
14656
|
+
*/
|
14657
|
+
get sliderBackplate(): BABYLON.AbstractMesh;
|
14634
14658
|
/** Sets a boolean indicating if the control is visible */
|
14635
14659
|
set isVisible(value: boolean);
|
14636
14660
|
protected _createNode(scene: BABYLON.Scene): BABYLON.TransformNode;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babylonjs-gui",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.2.0",
|
4
4
|
"main": "babylon.gui.js",
|
5
5
|
"types": "babylon.gui.module.d.ts",
|
6
6
|
"files": [
|
@@ -15,7 +15,7 @@
|
|
15
15
|
"test:escheck": "es-check es6 ./babylon.gui.js"
|
16
16
|
},
|
17
17
|
"dependencies": {
|
18
|
-
"babylonjs": "^7.
|
18
|
+
"babylonjs": "^7.2.0"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
21
|
"@dev/build-tools": "1.0.0",
|