babylonjs-gui 7.11.1 → 7.11.2
Sign up to get free protection for your applications and to get access to all the features.
- package/babylon.gui.d.ts +5 -1
- package/babylon.gui.js +33 -11
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +10 -2
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
@@ -1906,7 +1906,7 @@ export class Control implements IAnimatable {
|
|
1906
1906
|
/**
|
1907
1907
|
* @internal
|
1908
1908
|
*/
|
1909
|
-
protected static drawEllipse(x: number, y: number, width: number, height: number, context: ICanvasRenderingContext): void;
|
1909
|
+
protected static drawEllipse(x: number, y: number, width: number, height: number, arc: number, context: ICanvasRenderingContext): void;
|
1910
1910
|
/**
|
1911
1911
|
* Returns true if the control is ready to be used
|
1912
1912
|
* @returns
|
@@ -1982,6 +1982,10 @@ export class Ellipse extends Container {
|
|
1982
1982
|
/** Gets or sets border thickness */
|
1983
1983
|
get thickness(): number;
|
1984
1984
|
set thickness(value: number);
|
1985
|
+
private _arc;
|
1986
|
+
/** Gets or sets arcing of the ellipse (ratio of the circumference between 0 and 1) */
|
1987
|
+
get arc(): number;
|
1988
|
+
set arc(value: number);
|
1985
1989
|
/**
|
1986
1990
|
* Creates a new Ellipse
|
1987
1991
|
* @param name defines the control name
|
@@ -10700,7 +10704,7 @@ declare module BABYLON.GUI {
|
|
10700
10704
|
/**
|
10701
10705
|
* @internal
|
10702
10706
|
*/
|
10703
|
-
protected static drawEllipse(x: number, y: number, width: number, height: number, context: BABYLON.ICanvasRenderingContext): void;
|
10707
|
+
protected static drawEllipse(x: number, y: number, width: number, height: number, arc: number, context: BABYLON.ICanvasRenderingContext): void;
|
10704
10708
|
/**
|
10705
10709
|
* Returns true if the control is ready to be used
|
10706
10710
|
* @returns
|
@@ -10769,6 +10773,10 @@ declare module BABYLON.GUI {
|
|
10769
10773
|
/** Gets or sets border thickness */
|
10770
10774
|
get thickness(): number;
|
10771
10775
|
set thickness(value: number);
|
10776
|
+
private _arc;
|
10777
|
+
/** Gets or sets arcing of the ellipse (ratio of the circumference between 0 and 1) */
|
10778
|
+
get arc(): number;
|
10779
|
+
set arc(value: number);
|
10772
10780
|
/**
|
10773
10781
|
* Creates a new Ellipse
|
10774
10782
|
* @param name defines the control name
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babylonjs-gui",
|
3
|
-
"version": "7.11.
|
3
|
+
"version": "7.11.2",
|
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": "^7.11.
|
18
|
+
"babylonjs": "^7.11.2"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
21
|
"@dev/build-tools": "1.0.0",
|