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.d.ts
CHANGED
@@ -5790,6 +5790,18 @@ declare module BABYLON.GUI {
|
|
5790
5790
|
* Gets the slider backplate material used by this control
|
5791
5791
|
*/
|
5792
5792
|
get sliderBackplateMaterial(): MRDLBackplateMaterial;
|
5793
|
+
/**
|
5794
|
+
* Gets the slider bar mesh used by this control
|
5795
|
+
*/
|
5796
|
+
get sliderBar(): BABYLON.AbstractMesh;
|
5797
|
+
/**
|
5798
|
+
* Gets the slider thumb mesh used by this control
|
5799
|
+
*/
|
5800
|
+
get sliderThumb(): BABYLON.AbstractMesh;
|
5801
|
+
/**
|
5802
|
+
* Gets the slider backplate mesh used by this control
|
5803
|
+
*/
|
5804
|
+
get sliderBackplate(): BABYLON.AbstractMesh;
|
5793
5805
|
/** Sets a boolean indicating if the control is visible */
|
5794
5806
|
set isVisible(value: boolean);
|
5795
5807
|
protected _createNode(scene: BABYLON.Scene): BABYLON.TransformNode;
|