@galacean/engine-core 1.6.0-alpha.1 → 1.6.0-alpha.2

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.6.0-alpha.1",
3
+ "version": "1.6.0-alpha.2",
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.6.0-alpha.1"
21
+ "@galacean/engine-math": "1.6.0-alpha.2"
22
22
  },
23
23
  "devDependencies": {
24
- "@galacean/engine-design": "1.6.0-alpha.1"
24
+ "@galacean/engine-design": "1.6.0-alpha.2"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
@@ -192,8 +192,8 @@ export declare class Transform extends Component {
192
192
  * @param worldUp - Up direction in world space, default is Vector3(0, 1, 0)
193
193
  */
194
194
  lookAt(targetPosition: Vector3, worldUp?: Vector3): void;
195
- protected _onLocalMatrixChanging?(): void;
196
- protected _onWorldMatrixChange(): void;
195
+ protected _onLocalMatrixChanging(): void;
196
+ protected _onWorldMatrixChanging(): void;
197
197
  protected _isContainDirtyFlags(targetDirtyFlags: number): boolean;
198
198
  protected _isContainDirtyFlag(type: number): boolean;
199
199
  protected _setDirtyFlagTrue(type: number): void;
@@ -298,5 +298,7 @@ export declare enum TransformModifyFlags {
298
298
  /** WorldMatrix | WorldPosition | WorldEuler | WorldQuat | WorldScale */
299
299
  WmWpWeWqWs = 188,
300
300
  /** WorldMatrix | WorldPosition | WorldEuler | WorldQuat | WorldScale | WorldUniformScaling */
301
- WmWpWeWqWsWus = 444
301
+ WmWpWeWqWsWus = 444,
302
+ /** LocalQuat | LocalMatrix | WorldMatrix | WorldPosition | WorldEuler | WorldQuat | WorldScale | WorldUniformScaling */
303
+ LqLmWmWpWeWqWsWus = 510
302
304
  }