babylonjs-gui 7.42.0 → 7.44.0
Sign up to get free protection for your applications and to get access to all the features.
- package/babylon.gui.d.ts +1 -1
- package/babylon.gui.js +13 -9
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +2 -2
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
@@ -4154,7 +4154,7 @@ export class Vector2WithInfo extends Vector2 {
|
|
4154
4154
|
/** Class used to provide 2D matrix features */
|
4155
4155
|
export class Matrix2D {
|
4156
4156
|
/** Gets the internal array of 6 floats used to store matrix data */
|
4157
|
-
m: Float32Array
|
4157
|
+
m: Float32Array<ArrayBuffer>;
|
4158
4158
|
/**
|
4159
4159
|
* Creates a new matrix
|
4160
4160
|
* @param m00 defines value for (0, 0)
|
@@ -12757,7 +12757,7 @@ declare module BABYLON.GUI {
|
|
12757
12757
|
/** Class used to provide 2D matrix features */
|
12758
12758
|
export class Matrix2D {
|
12759
12759
|
/** Gets the internal array of 6 floats used to store matrix data */
|
12760
|
-
m: Float32Array
|
12760
|
+
m: Float32Array<ArrayBuffer>;
|
12761
12761
|
/**
|
12762
12762
|
* Creates a new matrix
|
12763
12763
|
* @param m00 defines value for (0, 0)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babylonjs-gui",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.44.0",
|
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.
|
18
|
+
"babylonjs": "^7.44.0"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
21
|
"@dev/build-tools": "1.0.0",
|