babylonjs-gui 9.15.0 → 9.16.1
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 +4 -4
- package/babylon.gui.js +1 -1
- package/babylon.gui.js.map +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +8 -8
- package/package.json +2 -2
- package/tsconfig.build.json +1 -2
package/babylon.gui.module.d.ts
CHANGED
|
@@ -2185,7 +2185,7 @@ export class FluentMaterial extends PushMaterial {
|
|
|
2185
2185
|
/**
|
|
2186
2186
|
* Gets or sets inner glow intensity. A value of 0 means no glow (default is 0.5)
|
|
2187
2187
|
*/
|
|
2188
|
-
innerGlowColorIntensity: number;
|
|
2188
|
+
accessor innerGlowColorIntensity: number;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* Gets or sets the inner glow color (white by default)
|
|
2191
2191
|
*/
|
|
@@ -2197,7 +2197,7 @@ export class FluentMaterial extends PushMaterial {
|
|
|
2197
2197
|
/**
|
|
2198
2198
|
* Gets or sets a boolean indicating if borders must be rendered (default is false)
|
|
2199
2199
|
*/
|
|
2200
|
-
renderBorders: boolean;
|
|
2200
|
+
accessor renderBorders: boolean;
|
|
2201
2201
|
/**
|
|
2202
2202
|
* Gets or sets border width (default is 0.5)
|
|
2203
2203
|
*/
|
|
@@ -2213,7 +2213,7 @@ export class FluentMaterial extends PushMaterial {
|
|
|
2213
2213
|
/**
|
|
2214
2214
|
* Gets or sets a boolean indicating if hover light must be rendered (default is false)
|
|
2215
2215
|
*/
|
|
2216
|
-
renderHoverLight: boolean;
|
|
2216
|
+
accessor renderHoverLight: boolean;
|
|
2217
2217
|
/**
|
|
2218
2218
|
* Gets or sets the radius used to render the hover light (default is 0.01)
|
|
2219
2219
|
*/
|
|
@@ -2228,7 +2228,7 @@ export class FluentMaterial extends PushMaterial {
|
|
|
2228
2228
|
hoverPosition: Vector3;
|
|
2229
2229
|
private _albedoTexture;
|
|
2230
2230
|
/** Gets or sets the texture to use for albedo color */
|
|
2231
|
-
albedoTexture: Nullable<BaseTexture>;
|
|
2231
|
+
accessor albedoTexture: Nullable<BaseTexture>;
|
|
2232
2232
|
/**
|
|
2233
2233
|
* Creates a new Fluent material
|
|
2234
2234
|
* @param name defines the name of the material
|
|
@@ -11776,7 +11776,7 @@ declare namespace BABYLON.GUI {
|
|
|
11776
11776
|
/**
|
|
11777
11777
|
* Gets or sets inner glow intensity. A value of 0 means no glow (default is 0.5)
|
|
11778
11778
|
*/
|
|
11779
|
-
innerGlowColorIntensity: number;
|
|
11779
|
+
accessor innerGlowColorIntensity: number;
|
|
11780
11780
|
/**
|
|
11781
11781
|
* Gets or sets the inner glow color (white by default)
|
|
11782
11782
|
*/
|
|
@@ -11788,7 +11788,7 @@ declare namespace BABYLON.GUI {
|
|
|
11788
11788
|
/**
|
|
11789
11789
|
* Gets or sets a boolean indicating if borders must be rendered (default is false)
|
|
11790
11790
|
*/
|
|
11791
|
-
renderBorders: boolean;
|
|
11791
|
+
accessor renderBorders: boolean;
|
|
11792
11792
|
/**
|
|
11793
11793
|
* Gets or sets border width (default is 0.5)
|
|
11794
11794
|
*/
|
|
@@ -11804,7 +11804,7 @@ declare namespace BABYLON.GUI {
|
|
|
11804
11804
|
/**
|
|
11805
11805
|
* Gets or sets a boolean indicating if hover light must be rendered (default is false)
|
|
11806
11806
|
*/
|
|
11807
|
-
renderHoverLight: boolean;
|
|
11807
|
+
accessor renderHoverLight: boolean;
|
|
11808
11808
|
/**
|
|
11809
11809
|
* Gets or sets the radius used to render the hover light (default is 0.01)
|
|
11810
11810
|
*/
|
|
@@ -11819,7 +11819,7 @@ declare namespace BABYLON.GUI {
|
|
|
11819
11819
|
hoverPosition: BABYLON.Vector3;
|
|
11820
11820
|
private _albedoTexture;
|
|
11821
11821
|
/** Gets or sets the texture to use for albedo color */
|
|
11822
|
-
albedoTexture: BABYLON.Nullable<BABYLON.BaseTexture>;
|
|
11822
|
+
accessor albedoTexture: BABYLON.Nullable<BABYLON.BaseTexture>;
|
|
11823
11823
|
/**
|
|
11824
11824
|
* Creates a new Fluent material
|
|
11825
11825
|
* @param name defines the name of the material
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.16.1",
|
|
4
4
|
"main": "babylon.gui.min.js",
|
|
5
5
|
"types": "babylon.gui.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"test:escheck": "es-check es6 ./babylon.gui.js"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"babylonjs": "9.
|
|
19
|
+
"babylonjs": "9.16.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|