babylonjs-gui 7.0.0 → 7.2.0

Sign up to get free protection for your applications and to get access to all the features.
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;