@galacean/engine-core 1.5.11 → 1.5.13

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.5.11",
3
+ "version": "1.5.13",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -18,10 +18,10 @@
18
18
  "types/**/*"
19
19
  ],
20
20
  "dependencies": {
21
- "@galacean/engine-math": "1.5.11"
21
+ "@galacean/engine-math": "1.5.13"
22
22
  },
23
23
  "devDependencies": {
24
- "@galacean/engine-design": "1.5.11"
24
+ "@galacean/engine-design": "1.5.13"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
package/types/Camera.d.ts CHANGED
@@ -71,7 +71,6 @@ export declare class Camera extends Component {
71
71
  */
72
72
  isAlphaOutputRequired: boolean;
73
73
  private _priority;
74
- private _shaderData;
75
74
  private _isCustomViewMatrix;
76
75
  private _isCustomProjectionMatrix;
77
76
  private _fieldOfView;
@@ -79,16 +78,17 @@ export declare class Camera extends Component {
79
78
  private _isProjectionDirty;
80
79
  private _isInvProjMatDirty;
81
80
  private _customAspectRatio;
82
- private _renderTarget;
83
- private _depthBufferParams;
84
81
  private _opaqueTextureEnabled;
85
82
  private _enableHDR;
86
83
  private _enablePostProcess;
87
84
  private _msaaSamples;
85
+ private _renderTarget;
88
86
  private _updateFlagManager;
89
87
  private _frustumChangeFlag;
90
88
  private _isViewMatrixDirty;
91
89
  private _isInvViewProjDirty;
90
+ private _shaderData;
91
+ private _depthBufferParams;
92
92
  private _viewport;
93
93
  private _pixelViewport;
94
94
  private _inverseProjectionMatrix;
@@ -107,6 +107,7 @@ export declare class Animator extends Component {
107
107
  * @param name - The name of the trigger parameter
108
108
  */
109
109
  deactivateTriggerParameter(name: string): void;
110
+ protected _onDestroy(): void;
110
111
  private _crossFade;
111
112
  private _getAnimatorStateInfo;
112
113
  private _getAnimatorStateData;
@@ -18,7 +18,6 @@ export declare class SpotLight extends Light {
18
18
  /** Angle, in radians, from falloff begins to ends. */
19
19
  penumbra: number;
20
20
  private _inverseDirection;
21
- private _projectMatrix;
22
21
  /**
23
22
  * Get light position.
24
23
  */
@@ -1,6 +1,7 @@
1
1
  import { Vector2 } from "@galacean/engine-math";
2
2
  import { ParticleCompositeCurve } from "./ParticleCompositeCurve";
3
3
  import { ParticleGeneratorModule } from "./ParticleGeneratorModule";
4
+ import { ParticleGenerator } from "../ParticleGenerator";
4
5
  /**
5
6
  * Texture sheet animation module.
6
7
  */
@@ -24,6 +25,8 @@ export declare class TextureSheetAnimationModule extends ParticleGeneratorModule
24
25
  * */
25
26
  get tiling(): Vector2;
26
27
  set tiling(value: Vector2);
28
+ constructor(generator: ParticleGenerator);
29
+ private _onTilingChanged;
27
30
  }
28
31
  /**
29
32
  * Texture sheet animation type.