@babylonjs/gui 5.0.0-alpha.8 → 5.0.0-beta.3

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.
Files changed (276) hide show
  1. package/2D/adtInstrumentation.js +1 -1
  2. package/2D/advancedDynamicTexture.d.ts +165 -125
  3. package/2D/advancedDynamicTexture.js +342 -181
  4. package/2D/advancedDynamicTexture.js.map +1 -1
  5. package/2D/controls/button.d.ts +8 -0
  6. package/2D/controls/button.js +33 -10
  7. package/2D/controls/button.js.map +1 -1
  8. package/2D/controls/checkbox.d.ts +2 -1
  9. package/2D/controls/checkbox.js +10 -8
  10. package/2D/controls/checkbox.js.map +1 -1
  11. package/2D/controls/colorpicker.d.ts +4 -3
  12. package/2D/controls/colorpicker.js +40 -23
  13. package/2D/controls/colorpicker.js.map +1 -1
  14. package/2D/controls/container.d.ts +16 -5
  15. package/2D/controls/container.js +91 -13
  16. package/2D/controls/container.js.map +1 -1
  17. package/2D/controls/control.d.ts +103 -44
  18. package/2D/controls/control.js +278 -129
  19. package/2D/controls/control.js.map +1 -1
  20. package/2D/controls/displayGrid.d.ts +2 -1
  21. package/2D/controls/displayGrid.js +6 -6
  22. package/2D/controls/displayGrid.js.map +1 -1
  23. package/2D/controls/ellipse.d.ts +5 -3
  24. package/2D/controls/ellipse.js +9 -5
  25. package/2D/controls/ellipse.js.map +1 -1
  26. package/2D/controls/focusableButton.d.ts +1 -0
  27. package/2D/controls/focusableButton.js +9 -6
  28. package/2D/controls/focusableButton.js.map +1 -1
  29. package/2D/controls/grid.d.ts +13 -2
  30. package/2D/controls/grid.js +108 -24
  31. package/2D/controls/grid.js.map +1 -1
  32. package/2D/controls/image.d.ts +5 -4
  33. package/2D/controls/image.js +52 -31
  34. package/2D/controls/image.js.map +1 -1
  35. package/2D/controls/index.js +29 -29
  36. package/2D/controls/inputPassword.js +4 -4
  37. package/2D/controls/inputPassword.js.map +1 -1
  38. package/2D/controls/inputText.d.ts +2 -1
  39. package/2D/controls/inputText.js +40 -14
  40. package/2D/controls/inputText.js.map +1 -1
  41. package/2D/controls/line.d.ts +3 -2
  42. package/2D/controls/line.js +8 -8
  43. package/2D/controls/line.js.map +1 -1
  44. package/2D/controls/multiLine.d.ts +4 -3
  45. package/2D/controls/multiLine.js +6 -6
  46. package/2D/controls/multiLine.js.map +1 -1
  47. package/2D/controls/radioButton.d.ts +2 -1
  48. package/2D/controls/radioButton.js +10 -7
  49. package/2D/controls/radioButton.js.map +1 -1
  50. package/2D/controls/rectangle.d.ts +8 -3
  51. package/2D/controls/rectangle.js +21 -5
  52. package/2D/controls/rectangle.js.map +1 -1
  53. package/2D/controls/scrollViewers/scrollViewer.d.ts +3 -2
  54. package/2D/controls/scrollViewers/scrollViewer.js +9 -9
  55. package/2D/controls/scrollViewers/scrollViewer.js.map +1 -1
  56. package/2D/controls/scrollViewers/scrollViewerWindow.d.ts +4 -3
  57. package/2D/controls/scrollViewers/scrollViewerWindow.js +4 -4
  58. package/2D/controls/scrollViewers/scrollViewerWindow.js.map +1 -1
  59. package/2D/controls/selector.js +8 -8
  60. package/2D/controls/selector.js.map +1 -1
  61. package/2D/controls/sliders/baseSlider.d.ts +1 -1
  62. package/2D/controls/sliders/baseSlider.js +12 -10
  63. package/2D/controls/sliders/baseSlider.js.map +1 -1
  64. package/2D/controls/sliders/imageBasedSlider.d.ts +10 -1
  65. package/2D/controls/sliders/imageBasedSlider.js +29 -5
  66. package/2D/controls/sliders/imageBasedSlider.js.map +1 -1
  67. package/2D/controls/sliders/imageScrollBar.d.ts +2 -1
  68. package/2D/controls/sliders/imageScrollBar.js +3 -3
  69. package/2D/controls/sliders/imageScrollBar.js.map +1 -1
  70. package/2D/controls/sliders/scrollBar.d.ts +2 -1
  71. package/2D/controls/sliders/scrollBar.js +3 -3
  72. package/2D/controls/sliders/scrollBar.js.map +1 -1
  73. package/2D/controls/sliders/slider.d.ts +2 -1
  74. package/2D/controls/sliders/slider.js +4 -4
  75. package/2D/controls/sliders/slider.js.map +1 -1
  76. package/2D/controls/stackPanel.d.ts +10 -3
  77. package/2D/controls/stackPanel.js +35 -13
  78. package/2D/controls/stackPanel.js.map +1 -1
  79. package/2D/controls/statics.js +3 -3
  80. package/2D/controls/statics.js.map +1 -1
  81. package/2D/controls/textBlock.d.ts +16 -9
  82. package/2D/controls/textBlock.js +75 -34
  83. package/2D/controls/textBlock.js.map +1 -1
  84. package/2D/controls/textWrapper.js +2 -2
  85. package/2D/controls/textWrapper.js.map +1 -1
  86. package/2D/controls/toggleButton.d.ts +1 -13
  87. package/2D/controls/toggleButton.js +29 -38
  88. package/2D/controls/toggleButton.js.map +1 -1
  89. package/2D/controls/virtualKeyboard.js +5 -5
  90. package/2D/controls/virtualKeyboard.js.map +1 -1
  91. package/2D/index.d.ts +1 -1
  92. package/2D/index.js +9 -9
  93. package/2D/index.js.map +1 -1
  94. package/2D/math2D.d.ts +5 -0
  95. package/2D/math2D.js +14 -2
  96. package/2D/math2D.js.map +1 -1
  97. package/2D/measure.js +1 -1
  98. package/2D/measure.js.map +1 -1
  99. package/2D/multiLinePoint.js +3 -3
  100. package/2D/style.js +2 -2
  101. package/2D/valueAndUnit.d.ts +21 -6
  102. package/2D/valueAndUnit.js +57 -13
  103. package/2D/valueAndUnit.js.map +1 -1
  104. package/2D/xmlLoader.d.ts +17 -3
  105. package/2D/xmlLoader.js +54 -15
  106. package/2D/xmlLoader.js.map +1 -1
  107. package/3D/behaviors/defaultBehavior.d.ts +73 -0
  108. package/3D/behaviors/defaultBehavior.js +122 -0
  109. package/3D/behaviors/defaultBehavior.js.map +1 -0
  110. package/3D/controls/abstractButton3D.d.ts +2 -2
  111. package/3D/controls/abstractButton3D.js +3 -3
  112. package/3D/controls/abstractButton3D.js.map +1 -1
  113. package/3D/controls/button3D.d.ts +0 -24
  114. package/3D/controls/button3D.js +15 -84
  115. package/3D/controls/button3D.js.map +1 -1
  116. package/3D/controls/container3D.js +2 -2
  117. package/3D/controls/contentDisplay3D.d.ts +30 -0
  118. package/3D/controls/contentDisplay3D.js +79 -0
  119. package/3D/controls/contentDisplay3D.js.map +1 -0
  120. package/3D/controls/control3D.d.ts +10 -7
  121. package/3D/controls/control3D.js +27 -19
  122. package/3D/controls/control3D.js.map +1 -1
  123. package/3D/controls/cylinderPanel.js +5 -5
  124. package/3D/controls/handMenu.d.ts +28 -0
  125. package/3D/controls/handMenu.js +48 -0
  126. package/3D/controls/handMenu.js.map +1 -0
  127. package/3D/controls/holographicBackplate.d.ts +48 -0
  128. package/3D/controls/holographicBackplate.js +121 -0
  129. package/3D/controls/holographicBackplate.js.map +1 -0
  130. package/3D/controls/holographicButton.d.ts +1 -1
  131. package/3D/controls/holographicButton.js +35 -31
  132. package/3D/controls/holographicButton.js.map +1 -1
  133. package/3D/controls/holographicSlate.d.ts +118 -0
  134. package/3D/controls/holographicSlate.js +365 -0
  135. package/3D/controls/holographicSlate.js.map +1 -0
  136. package/3D/controls/index.d.ts +7 -0
  137. package/3D/controls/index.js +22 -15
  138. package/3D/controls/index.js.map +1 -1
  139. package/3D/controls/meshButton3D.js +2 -2
  140. package/3D/controls/meshButton3D.js.map +1 -1
  141. package/3D/controls/nearMenu.d.ts +45 -0
  142. package/3D/controls/nearMenu.js +111 -0
  143. package/3D/controls/nearMenu.js.map +1 -0
  144. package/3D/controls/planePanel.js +3 -3
  145. package/3D/controls/scatterPanel.js +4 -4
  146. package/3D/controls/slider3D.d.ts +80 -0
  147. package/3D/controls/slider3D.js +268 -0
  148. package/3D/controls/slider3D.js.map +1 -0
  149. package/3D/controls/spherePanel.js +5 -5
  150. package/3D/controls/stackPanel3D.js +3 -3
  151. package/3D/controls/touchButton3D.d.ts +9 -21
  152. package/3D/controls/touchButton3D.js +52 -224
  153. package/3D/controls/touchButton3D.js.map +1 -1
  154. package/3D/controls/touchHolographicButton.d.ts +20 -3
  155. package/3D/controls/touchHolographicButton.js +137 -67
  156. package/3D/controls/touchHolographicButton.js.map +1 -1
  157. package/3D/controls/touchHolographicMenu.d.ts +61 -0
  158. package/3D/controls/touchHolographicMenu.js +149 -0
  159. package/3D/controls/touchHolographicMenu.js.map +1 -0
  160. package/3D/controls/touchMeshButton3D.d.ts +3 -6
  161. package/3D/controls/touchMeshButton3D.js +6 -14
  162. package/3D/controls/touchMeshButton3D.js.map +1 -1
  163. package/3D/controls/touchToggleButton3D.d.ts +35 -0
  164. package/3D/controls/touchToggleButton3D.js +60 -0
  165. package/3D/controls/touchToggleButton3D.js.map +1 -0
  166. package/3D/controls/volumeBasedPanel.d.ts +1 -1
  167. package/3D/controls/volumeBasedPanel.js +5 -5
  168. package/3D/controls/volumeBasedPanel.js.map +1 -1
  169. package/3D/gizmos/gizmoHandle.d.ts +108 -0
  170. package/3D/gizmos/gizmoHandle.js +210 -0
  171. package/3D/gizmos/gizmoHandle.js.map +1 -0
  172. package/3D/gizmos/index.d.ts +2 -0
  173. package/3D/gizmos/index.js +3 -0
  174. package/3D/gizmos/index.js.map +1 -0
  175. package/3D/gizmos/slateGizmo.d.ts +59 -0
  176. package/3D/gizmos/slateGizmo.js +364 -0
  177. package/3D/gizmos/slateGizmo.js.map +1 -0
  178. package/3D/gui3DManager.d.ts +15 -2
  179. package/3D/gui3DManager.js +62 -41
  180. package/3D/gui3DManager.js.map +1 -1
  181. package/3D/index.d.ts +3 -2
  182. package/3D/index.js +5 -4
  183. package/3D/index.js.map +1 -1
  184. package/3D/materials/fluent/fluentMaterial.d.ts +90 -0
  185. package/3D/materials/fluent/fluentMaterial.js +282 -0
  186. package/3D/materials/fluent/fluentMaterial.js.map +1 -0
  187. package/3D/materials/fluent/index.d.ts +1 -0
  188. package/3D/materials/fluent/index.js +2 -0
  189. package/3D/materials/fluent/index.js.map +1 -0
  190. package/3D/materials/{shaders → fluent/shaders}/fluent.fragment.d.ts +0 -0
  191. package/3D/materials/fluent/shaders/fluent.fragment.js +7 -0
  192. package/3D/materials/fluent/shaders/fluent.fragment.js.map +1 -0
  193. package/3D/materials/{shaders → fluent/shaders}/fluent.vertex.d.ts +0 -0
  194. package/3D/materials/{shaders → fluent/shaders}/fluent.vertex.js +2 -2
  195. package/3D/materials/fluent/shaders/fluent.vertex.js.map +1 -0
  196. package/3D/materials/fluentBackplate/fluentBackplateMaterial.d.ts +154 -0
  197. package/3D/materials/fluentBackplate/fluentBackplateMaterial.js +435 -0
  198. package/3D/materials/fluentBackplate/fluentBackplateMaterial.js.map +1 -0
  199. package/3D/materials/fluentBackplate/index.d.ts +1 -0
  200. package/3D/materials/fluentBackplate/index.js +2 -0
  201. package/3D/materials/fluentBackplate/index.js.map +1 -0
  202. package/3D/materials/fluentBackplate/shaders/fluentBackplate.fragment.d.ts +5 -0
  203. package/3D/materials/fluentBackplate/shaders/fluentBackplate.fragment.js +7 -0
  204. package/3D/materials/fluentBackplate/shaders/fluentBackplate.fragment.js.map +1 -0
  205. package/3D/materials/fluentBackplate/shaders/fluentBackplate.vertex.d.ts +5 -0
  206. package/3D/materials/fluentBackplate/shaders/fluentBackplate.vertex.js +7 -0
  207. package/3D/materials/fluentBackplate/shaders/fluentBackplate.vertex.js.map +1 -0
  208. package/3D/materials/fluentButton/fluentButtonMaterial.d.ts +189 -0
  209. package/3D/materials/fluentButton/fluentButtonMaterial.js +538 -0
  210. package/3D/materials/fluentButton/fluentButtonMaterial.js.map +1 -0
  211. package/3D/materials/fluentButton/index.d.ts +1 -0
  212. package/3D/materials/fluentButton/index.js +2 -0
  213. package/3D/materials/fluentButton/index.js.map +1 -0
  214. package/3D/materials/fluentButton/shaders/fluentButton.fragment.d.ts +5 -0
  215. package/3D/materials/fluentButton/shaders/fluentButton.fragment.js +7 -0
  216. package/3D/materials/fluentButton/shaders/fluentButton.fragment.js.map +1 -0
  217. package/3D/materials/fluentButton/shaders/fluentButton.vertex.d.ts +5 -0
  218. package/3D/materials/fluentButton/shaders/fluentButton.vertex.js +7 -0
  219. package/3D/materials/fluentButton/shaders/fluentButton.vertex.js.map +1 -0
  220. package/3D/materials/fluentMaterial.d.ts +2 -88
  221. package/3D/materials/fluentMaterial.js +2 -277
  222. package/3D/materials/fluentMaterial.js.map +1 -1
  223. package/3D/materials/handle/handleMaterial.d.ts +68 -0
  224. package/3D/materials/handle/handleMaterial.js +127 -0
  225. package/3D/materials/handle/handleMaterial.js.map +1 -0
  226. package/3D/materials/handle/index.d.ts +1 -0
  227. package/3D/materials/handle/index.js +2 -0
  228. package/3D/materials/handle/index.js.map +1 -0
  229. package/3D/materials/handle/shaders/handle.fragment.d.ts +5 -0
  230. package/3D/materials/handle/shaders/handle.fragment.js +7 -0
  231. package/3D/materials/handle/shaders/handle.fragment.js.map +1 -0
  232. package/3D/materials/handle/shaders/handle.vertex.d.ts +5 -0
  233. package/3D/materials/handle/shaders/handle.vertex.js +7 -0
  234. package/3D/materials/handle/shaders/handle.vertex.js.map +1 -0
  235. package/3D/materials/index.d.ts +5 -1
  236. package/3D/materials/index.js +5 -1
  237. package/3D/materials/index.js.map +1 -1
  238. package/3D/materials/mrdl/index.d.ts +3 -0
  239. package/3D/materials/mrdl/index.js +4 -0
  240. package/3D/materials/mrdl/index.js.map +1 -0
  241. package/3D/materials/mrdl/mrdlBackplateMaterial.d.ts +147 -0
  242. package/3D/materials/mrdl/mrdlBackplateMaterial.js +410 -0
  243. package/3D/materials/mrdl/mrdlBackplateMaterial.js.map +1 -0
  244. package/3D/materials/mrdl/mrdlSliderBarMaterial.d.ts +333 -0
  245. package/3D/materials/mrdl/mrdlSliderBarMaterial.js +787 -0
  246. package/3D/materials/mrdl/mrdlSliderBarMaterial.js.map +1 -0
  247. package/3D/materials/mrdl/mrdlSliderThumbMaterial.d.ts +333 -0
  248. package/3D/materials/mrdl/mrdlSliderThumbMaterial.js +787 -0
  249. package/3D/materials/mrdl/mrdlSliderThumbMaterial.js.map +1 -0
  250. package/3D/materials/mrdl/shaders/mrdlBackplate.fragment.d.ts +5 -0
  251. package/3D/materials/mrdl/shaders/mrdlBackplate.fragment.js +7 -0
  252. package/3D/materials/mrdl/shaders/mrdlBackplate.fragment.js.map +1 -0
  253. package/3D/materials/mrdl/shaders/mrdlBackplate.vertex.d.ts +5 -0
  254. package/3D/materials/mrdl/shaders/mrdlBackplate.vertex.js +7 -0
  255. package/3D/materials/mrdl/shaders/mrdlBackplate.vertex.js.map +1 -0
  256. package/3D/materials/mrdl/shaders/mrdlSliderBar.fragment.d.ts +5 -0
  257. package/3D/materials/mrdl/shaders/mrdlSliderBar.fragment.js +7 -0
  258. package/3D/materials/mrdl/shaders/mrdlSliderBar.fragment.js.map +1 -0
  259. package/3D/materials/mrdl/shaders/mrdlSliderBar.vertex.d.ts +5 -0
  260. package/3D/materials/mrdl/shaders/mrdlSliderBar.vertex.js +7 -0
  261. package/3D/materials/mrdl/shaders/mrdlSliderBar.vertex.js.map +1 -0
  262. package/3D/materials/mrdl/shaders/mrdlSliderThumb.fragment.d.ts +5 -0
  263. package/3D/materials/mrdl/shaders/mrdlSliderThumb.fragment.js +7 -0
  264. package/3D/materials/mrdl/shaders/mrdlSliderThumb.fragment.js.map +1 -0
  265. package/3D/materials/mrdl/shaders/mrdlSliderThumb.vertex.d.ts +5 -0
  266. package/3D/materials/mrdl/shaders/mrdlSliderThumb.vertex.js +7 -0
  267. package/3D/materials/mrdl/shaders/mrdlSliderThumb.vertex.js.map +1 -0
  268. package/3D/vector3WithInfo.js +1 -1
  269. package/index.d.ts +2 -2
  270. package/index.js +2 -2
  271. package/index.js.map +1 -1
  272. package/legacy/legacy.js +2 -2
  273. package/package.json +117 -9
  274. package/3D/materials/shaders/fluent.fragment.js +0 -7
  275. package/3D/materials/shaders/fluent.fragment.js.map +0 -1
  276. package/3D/materials/shaders/fluent.vertex.js.map +0 -1
@@ -0,0 +1,333 @@
1
+ import { Nullable } from "@babylonjs/core/types";
2
+ import { Matrix, Vector2, Vector3, Vector4 } from "@babylonjs/core/Maths/math.vector";
3
+ import { IAnimatable } from "@babylonjs/core/Animations/animatable.interface";
4
+ import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
5
+ import { Texture } from "@babylonjs/core/Materials/Textures/texture";
6
+ import { PushMaterial } from "@babylonjs/core/Materials/pushMaterial";
7
+ import { AbstractMesh } from "@babylonjs/core/Meshes/abstractMesh";
8
+ import { SubMesh } from "@babylonjs/core/Meshes/subMesh";
9
+ import { Mesh } from "@babylonjs/core/Meshes/mesh";
10
+ import { Scene } from "@babylonjs/core/scene";
11
+ import { Color4 } from "@babylonjs/core/Maths/math.color";
12
+ import "./shaders/mrdlSliderBar.fragment";
13
+ import "./shaders/mrdlSliderBar.vertex";
14
+ /**
15
+ * Class used to render Slider Bar material with MRDL
16
+ */
17
+ export declare class MRDLSliderBarMaterial extends PushMaterial {
18
+ /**
19
+ * URL pointing to the texture used to define the coloring for the Iridescent Map effect.
20
+ */
21
+ static BLUE_GRADIENT_TEXTURE_URL: string;
22
+ private _blueGradientTexture;
23
+ /**
24
+ * Gets or sets the corner Radius on the slider bar.
25
+ */
26
+ radius: number;
27
+ /**
28
+ * Gets or sets the Bevel Front on the slider bar.
29
+ */
30
+ bevelFront: number;
31
+ /**
32
+ * Gets or sets the Bevel Front Stretch on the slider bar.
33
+ */
34
+ bevelFrontStretch: number;
35
+ /**
36
+ * Gets or sets the Bevel Back on the slider bar.
37
+ */
38
+ bevelBack: number;
39
+ /**
40
+ * Gets or sets the Bevel Back Stretch on the slider bar.
41
+ */
42
+ bevelBackStretch: number;
43
+ /**
44
+ * Gets or sets the top left Radii Multiplier.
45
+ */
46
+ radiusTopLeft: number;
47
+ /**
48
+ * Gets or sets the top left Radii Multiplier.
49
+ */
50
+ radiusTopRight: number;
51
+ /**
52
+ * Gets or sets the top left Radii Multiplier.
53
+ */
54
+ radiusBottomLeft: number;
55
+ /**
56
+ * Gets or sets the top left Radii Multiplier.
57
+ */
58
+ radiusBottomRight: number;
59
+ /**
60
+ * Gets or sets whether Bulge is enabled.
61
+ * Default is false.
62
+ */
63
+ bulgeEnabled: boolean;
64
+ /**
65
+ * Gets or sets the Bulge Height.
66
+ */
67
+ bulgeHeight: number;
68
+ /**
69
+ * Gets or sets the Bulge Radius.
70
+ */
71
+ bulgeRadius: number;
72
+ /**
73
+ * Gets or sets the Sun Intensity.
74
+ */
75
+ sunIntensity: number;
76
+ /**
77
+ * Gets or sets the Sun Theta.
78
+ */
79
+ sunTheta: number;
80
+ /**
81
+ * Gets or sets the Sun Phi.
82
+ */
83
+ sunPhi: number;
84
+ /**
85
+ * Gets or sets the Indirect Diffuse.
86
+ */
87
+ indirectDiffuse: number;
88
+ /**
89
+ * Gets or sets the base albedo.
90
+ */
91
+ albedo: Color4;
92
+ /**
93
+ * Gets or sets the Specular value.
94
+ */
95
+ specular: number;
96
+ /**
97
+ * Gets or sets the Shininess value.
98
+ */
99
+ shininess: number;
100
+ /**
101
+ * Gets or sets the Sharpness value.
102
+ */
103
+ sharpness: number;
104
+ /**
105
+ * Gets or sets the Subsurface value.
106
+ */
107
+ subsurface: number;
108
+ /**
109
+ * Gets or sets the left gradient color.
110
+ */
111
+ leftGradientColor: Color4;
112
+ /**
113
+ * Gets or sets the right gradient color.
114
+ */
115
+ rightGradientColor: Color4;
116
+ /**
117
+ * Gets or sets the reflection value.
118
+ */
119
+ reflection: number;
120
+ /**
121
+ * Gets or sets the front reflect value.
122
+ */
123
+ frontReflect: number;
124
+ /**
125
+ * Gets or sets the edge reflect value.
126
+ */
127
+ edgeReflect: number;
128
+ /**
129
+ * Gets or sets the power value.
130
+ */
131
+ power: number;
132
+ /**
133
+ * Gets or sets the sky color.
134
+ */
135
+ skyColor: Color4;
136
+ /**
137
+ * Gets or sets the horizon color.
138
+ */
139
+ horizonColor: Color4;
140
+ /**
141
+ * Gets or sets the ground color.
142
+ */
143
+ groundColor: Color4;
144
+ /**
145
+ * Gets or sets the horizon power value.
146
+ */
147
+ horizonPower: number;
148
+ /**
149
+ * Gets or sets the finger occlusion width value.
150
+ */
151
+ width: number;
152
+ /**
153
+ * Gets or sets the finger occlusion fuzz value.
154
+ */
155
+ fuzz: number;
156
+ /**
157
+ * Gets or sets the minimum finger occlusion fuzz value.
158
+ */
159
+ minFuzz: number;
160
+ /**
161
+ * Gets or sets the finger occlusion clip fade value.
162
+ */
163
+ clipFade: number;
164
+ /**
165
+ * Gets or sets the hue shift value.
166
+ */
167
+ hueShift: number;
168
+ /**
169
+ * Gets or sets the saturation shift value.
170
+ */
171
+ saturationShift: number;
172
+ /**
173
+ * Gets or sets the value shift.
174
+ */
175
+ valueShift: number;
176
+ /**
177
+ * Gets or sets the position of the hover glow effect.
178
+ */
179
+ blobPosition: Vector3;
180
+ /**
181
+ * Gets or sets the intensity of the hover glow effect.
182
+ */
183
+ blobIntensity: number;
184
+ /**
185
+ * Gets or sets the near size of the hover glow effect.
186
+ */
187
+ blobNearSize: number;
188
+ /**
189
+ * Gets or sets the far size of the hover glow effect.
190
+ */
191
+ blobFarSize: number;
192
+ /**
193
+ * Gets or sets the distance considered "near" to the mesh, which controls the size of the hover glow effect (see blobNearSize).
194
+ */
195
+ blobNearDistance: number;
196
+ /**
197
+ * Gets or sets the distance considered "far" from the mesh, which controls the size of the hover glow effect (see blobFarSize).
198
+ */
199
+ blobFarDistance: number;
200
+ /**
201
+ * Gets or sets the length of the hover glow effect fade.
202
+ */
203
+ blobFadeLength: number;
204
+ /**
205
+ * Gets or sets the progress of the hover glow effect selection animation corresponding to the left pointer (0.0 - 1.0).
206
+ */
207
+ blobPulse: number;
208
+ /**
209
+ * Gets or sets the opacity of the hover glow effect corresponding to the left pointer (0.0 - 1.0). Default is 0.
210
+ */
211
+ blobFade: number;
212
+ /**
213
+ * Gets or sets the position of the hover glow effect.
214
+ */
215
+ blobPosition2: Vector3;
216
+ /**
217
+ * Gets or sets the size of the hover glow effect when the right pointer is considered "near" to the mesh (see blobNearDistance).
218
+ */
219
+ blobNearSize2: number;
220
+ /**
221
+ * Gets or sets the progress of the hover glow effect selection animation corresponding to the right pointer (0.0 - 1.0).
222
+ */
223
+ blobPulse2: number;
224
+ /**
225
+ * Gets or sets the opacity of the hover glow effect corresponding to the right pointer (0.0 - 1.0). Default is 1.
226
+ */
227
+ blobFade2: number;
228
+ /**
229
+ * Gets or sets the texture of the hover glow effect.
230
+ */
231
+ blobTexture: Texture;
232
+ /**
233
+ * Gets or sets the finger position for left index.
234
+ */
235
+ leftIndexPosition: Vector3;
236
+ /**
237
+ * Gets or sets the finger position for right index.
238
+ */
239
+ rightIndexPosition: Vector3;
240
+ /**
241
+ * Gets or sets the finger position for left index middle position.
242
+ */
243
+ leftIndexMiddlePosition: Vector3;
244
+ /**
245
+ * Gets or sets the finger position for right index middle position.
246
+ */
247
+ rightIndexMiddlePosition: Vector3;
248
+ /**
249
+ * Gets or sets the Decal Scle for XY.
250
+ */
251
+ decalScaleXY: Vector2;
252
+ /**
253
+ * Gets or sets decalFrontOnly
254
+ * Default is true
255
+ */
256
+ decalFrontOnly: boolean;
257
+ /**
258
+ * Gets or sets the Rim Light intensity.
259
+ */
260
+ rimIntensity: number;
261
+ /**
262
+ * Gets or sets the Rim Light hue shift value.
263
+ */
264
+ rimHueShift: number;
265
+ /**
266
+ * Gets or sets the Rim Light saturation shift value.
267
+ */
268
+ rimSaturationShift: number;
269
+ /**
270
+ * Gets or sets the Rim Light value shift.
271
+ */
272
+ rimValueShift: number;
273
+ /**
274
+ * Gets or sets the intensity of the iridescence effect.
275
+ */
276
+ iridescenceIntensity: number;
277
+ /**
278
+ * @hidden
279
+ */
280
+ useGlobalLeftIndex: number;
281
+ /**
282
+ * @hidden
283
+ */
284
+ useGlobalRightIndex: number;
285
+ /**
286
+ * @hidden
287
+ */
288
+ globalLeftIndexTipProximity: number;
289
+ /**
290
+ * @hidden
291
+ */
292
+ globalRightIndexTipProximity: number;
293
+ /**
294
+ * @hidden
295
+ */
296
+ globalLeftIndexTipPosition: Vector4;
297
+ /**
298
+ * @hidden
299
+ */
300
+ globaRightIndexTipPosition: Vector4;
301
+ /**
302
+ * @hidden
303
+ */
304
+ globalLeftThumbTipPosition: Vector4;
305
+ /**
306
+ * @hidden
307
+ */
308
+ globalRightThumbTipPosition: Vector4;
309
+ /**
310
+ * @hidden
311
+ */
312
+ globalLeftIndexMiddlePosition: Vector4;
313
+ /**
314
+ * @hidden
315
+ */
316
+ globalRightIndexMiddlePosition: Vector4;
317
+ constructor(name: string, scene: Scene);
318
+ needAlphaBlending(): boolean;
319
+ needAlphaTesting(): boolean;
320
+ getAlphaTestTexture(): Nullable<BaseTexture>;
321
+ isReadyForSubMesh(mesh: AbstractMesh, subMesh: SubMesh, useInstances?: boolean): boolean;
322
+ bindForSubMesh(world: Matrix, mesh: Mesh, subMesh: SubMesh): void;
323
+ /**
324
+ * Get the list of animatables in the material.
325
+ * @returns the list of animatables object used in the material
326
+ */
327
+ getAnimatables(): IAnimatable[];
328
+ dispose(forceDisposeEffect?: boolean): void;
329
+ clone(name: string): MRDLSliderBarMaterial;
330
+ serialize(): any;
331
+ getClassName(): string;
332
+ static Parse(source: any, scene: Scene, rootUrl: string): MRDLSliderBarMaterial;
333
+ }