@galacean/effects-core 2.1.0-alpha.11 → 2.1.0-alpha.12

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.
@@ -30,6 +30,7 @@ export declare class InteractComponent extends RendererComponent {
30
30
  dxRange: [min: number, max: number];
31
31
  dyRange: [min: number, max: number];
32
32
  };
33
+ private duringPlay;
33
34
  /** 是否响应点击和拖拽交互事件 */
34
35
  private _interactive;
35
36
  set interactive(enable: boolean);
@@ -28,6 +28,8 @@ export declare class TextComponent extends BaseRenderComponent {
28
28
  * 文本行数
29
29
  */
30
30
  lineCount: number;
31
+ protected readonly SCALE_FACTOR = 0.1;
32
+ protected readonly ALPHA_FIX_VALUE: number;
31
33
  constructor(engine: Engine, props?: TextItemProps);
32
34
  onUpdate(dt: number): void;
33
35
  fromData(data: TextItemProps): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacean/effects-core",
3
- "version": "2.1.0-alpha.11",
3
+ "version": "2.1.0-alpha.12",
4
4
  "description": "Galacean Effects runtime core for the web",
5
5
  "module": "./dist/index.mjs",
6
6
  "main": "./dist/index.js",