babylonjs-gui 8.28.3 → 8.29.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 +3 -0
- package/babylon.gui.js +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +6 -0
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
@@ -7590,6 +7590,9 @@ export class Control implements IAnimatable, IFocusableControl {
|
|
7590
7590
|
_renderHighlightSpecific(context: ICanvasRenderingContext): void;
|
7591
7591
|
protected _getColor(context: ICanvasRenderingContext): string | ICanvasGradient;
|
7592
7592
|
/**
|
7593
|
+
* Applies the control's state to the provided context. Important: unless this is a temporary context,
|
7594
|
+
* be sure to call context.save() before calling _applyStates() and later call context.restore() when
|
7595
|
+
* you are done using these state updates.
|
7593
7596
|
* @internal
|
7594
7597
|
*/
|
7595
7598
|
protected _applyStates(context: ICanvasRenderingContext): void;
|
@@ -16004,6 +16007,9 @@ declare module BABYLON.GUI {
|
|
16004
16007
|
_renderHighlightSpecific(context: BABYLON.ICanvasRenderingContext): void;
|
16005
16008
|
protected _getColor(context: BABYLON.ICanvasRenderingContext): string | BABYLON.ICanvasGradient;
|
16006
16009
|
/**
|
16010
|
+
* Applies the control's state to the provided context. Important: unless this is a temporary context,
|
16011
|
+
* be sure to call context.save() before calling _applyStates() and later call context.restore() when
|
16012
|
+
* you are done using these state updates.
|
16007
16013
|
* @internal
|
16008
16014
|
*/
|
16009
16015
|
protected _applyStates(context: BABYLON.ICanvasRenderingContext): void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babylonjs-gui",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.29.1",
|
4
4
|
"main": "babylon.gui.min.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": "^8.
|
18
|
+
"babylonjs": "^8.29.1"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
21
|
"@dev/build-tools": "1.0.0",
|