@galacean/engine-core 1.1.0-beta.34 → 1.1.0-beta.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacean/engine-core",
3
- "version": "1.1.0-beta.34",
3
+ "version": "1.1.0-beta.35",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -15,10 +15,10 @@
15
15
  "types/**/*"
16
16
  ],
17
17
  "dependencies": {
18
- "@galacean/engine-math": "1.1.0-beta.34"
18
+ "@galacean/engine-math": "1.1.0-beta.35"
19
19
  },
20
20
  "devDependencies": {
21
- "@galacean/engine-design": "1.1.0-beta.34"
21
+ "@galacean/engine-design": "1.1.0-beta.35"
22
22
  },
23
23
  "scripts": {
24
24
  "b:types": "tsc"
@@ -64,4 +64,6 @@ export interface AtlasSprite {
64
64
  w: number;
65
65
  };
66
66
  pixelsPerUnit: number;
67
+ width: number;
68
+ height: number;
67
69
  }
@@ -108,4 +108,5 @@ export declare class TextRenderer extends Renderer {
108
108
  private _resetSubFont;
109
109
  private _updatePosition;
110
110
  private _updateLocalData;
111
+ private _isTextNoVisible;
111
112
  }