babylonjs-gui 8.29.0 → 8.29.2
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.d.ts
CHANGED
@@ -6966,6 +6966,9 @@ declare module BABYLON.GUI {
|
|
6966
6966
|
_renderHighlightSpecific(context: BABYLON.ICanvasRenderingContext): void;
|
6967
6967
|
protected _getColor(context: BABYLON.ICanvasRenderingContext): string | BABYLON.ICanvasGradient;
|
6968
6968
|
/**
|
6969
|
+
* Applies the control's state to the provided context. Important: unless this is a temporary context,
|
6970
|
+
* be sure to call context.save() before calling _applyStates() and later call context.restore() when
|
6971
|
+
* you are done using these state updates.
|
6969
6972
|
* @internal
|
6970
6973
|
*/
|
6971
6974
|
protected _applyStates(context: BABYLON.ICanvasRenderingContext): void;
|