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.module.d.ts
CHANGED
@@ -1668,9 +1668,9 @@ export class Control implements IAnimatable {
|
|
1668
1668
|
*/
|
1669
1669
|
_intersectsRect(rect: Measure, context?: ICanvasRenderingContext): boolean;
|
1670
1670
|
/** @internal */
|
1671
|
-
protected
|
1671
|
+
protected _computeAdditionalOffsetX(): number;
|
1672
1672
|
/** @internal */
|
1673
|
-
protected
|
1673
|
+
protected _computeAdditionalOffsetY(): number;
|
1674
1674
|
/** @internal */
|
1675
1675
|
invalidateRect(): void;
|
1676
1676
|
/**
|
@@ -3232,9 +3232,9 @@ export class Rectangle extends Container {
|
|
3232
3232
|
constructor(name?: string | undefined);
|
3233
3233
|
protected _getTypeName(): string;
|
3234
3234
|
/** @internal */
|
3235
|
-
protected
|
3235
|
+
protected _computeAdditionalOffsetX(): number;
|
3236
3236
|
/** @internal */
|
3237
|
-
protected
|
3237
|
+
protected _computeAdditionalOffsetY(): number;
|
3238
3238
|
protected _getRectangleFill(context: ICanvasRenderingContext): string | CanvasGradient;
|
3239
3239
|
protected _localDraw(context: ICanvasRenderingContext): void;
|
3240
3240
|
protected _additionalProcessing(parentMeasure: Measure, context: ICanvasRenderingContext): void;
|
@@ -10377,9 +10377,9 @@ declare module BABYLON.GUI {
|
|
10377
10377
|
*/
|
10378
10378
|
_intersectsRect(rect: Measure, context?: BABYLON.ICanvasRenderingContext): boolean;
|
10379
10379
|
/** @internal */
|
10380
|
-
protected
|
10380
|
+
protected _computeAdditionalOffsetX(): number;
|
10381
10381
|
/** @internal */
|
10382
|
-
protected
|
10382
|
+
protected _computeAdditionalOffsetY(): number;
|
10383
10383
|
/** @internal */
|
10384
10384
|
invalidateRect(): void;
|
10385
10385
|
/**
|
@@ -11813,9 +11813,9 @@ declare module BABYLON.GUI {
|
|
11813
11813
|
constructor(name?: string | undefined);
|
11814
11814
|
protected _getTypeName(): string;
|
11815
11815
|
/** @internal */
|
11816
|
-
protected
|
11816
|
+
protected _computeAdditionalOffsetX(): number;
|
11817
11817
|
/** @internal */
|
11818
|
-
protected
|
11818
|
+
protected _computeAdditionalOffsetY(): number;
|
11819
11819
|
protected _getRectangleFill(context: BABYLON.ICanvasRenderingContext): string | CanvasGradient;
|
11820
11820
|
protected _localDraw(context: BABYLON.ICanvasRenderingContext): void;
|
11821
11821
|
protected _additionalProcessing(parentMeasure: Measure, context: BABYLON.ICanvasRenderingContext): void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babylonjs-gui",
|
3
|
-
"version": "6.12.
|
3
|
+
"version": "6.12.4",
|
4
4
|
"main": "babylon.gui.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": "^6.12.
|
18
|
+
"babylonjs": "^6.12.4"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
21
|
"@dev/build-tools": "1.0.0",
|