babylonjs-gui 6.12.2 → 6.12.4
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 +113 -105
- 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/babylon.gui.d.ts
CHANGED
@@ -1595,9 +1595,9 @@ declare module BABYLON.GUI {
|
|
1595
1595
|
*/
|
1596
1596
|
_intersectsRect(rect: Measure, context?: BABYLON.ICanvasRenderingContext): boolean;
|
1597
1597
|
/** @internal */
|
1598
|
-
protected
|
1598
|
+
protected _computeAdditionalOffsetX(): number;
|
1599
1599
|
/** @internal */
|
1600
|
-
protected
|
1600
|
+
protected _computeAdditionalOffsetY(): number;
|
1601
1601
|
/** @internal */
|
1602
1602
|
invalidateRect(): void;
|
1603
1603
|
/**
|
@@ -3031,9 +3031,9 @@ declare module BABYLON.GUI {
|
|
3031
3031
|
constructor(name?: string | undefined);
|
3032
3032
|
protected _getTypeName(): string;
|
3033
3033
|
/** @internal */
|
3034
|
-
protected
|
3034
|
+
protected _computeAdditionalOffsetX(): number;
|
3035
3035
|
/** @internal */
|
3036
|
-
protected
|
3036
|
+
protected _computeAdditionalOffsetY(): number;
|
3037
3037
|
protected _getRectangleFill(context: BABYLON.ICanvasRenderingContext): string | CanvasGradient;
|
3038
3038
|
protected _localDraw(context: BABYLON.ICanvasRenderingContext): void;
|
3039
3039
|
protected _additionalProcessing(parentMeasure: Measure, context: BABYLON.ICanvasRenderingContext): void;
|