@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/dist/main.js +47 -34
- package/dist/main.js.map +1 -1
- package/dist/module.js +47 -34
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/Transform.d.ts +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/engine-core",
|
|
3
|
-
"version": "1.6.0-alpha.
|
|
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.
|
|
21
|
+
"@galacean/engine-math": "1.6.0-alpha.2"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@galacean/engine-design": "1.6.0-alpha.
|
|
24
|
+
"@galacean/engine-design": "1.6.0-alpha.2"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"b:types": "tsc"
|
package/types/Transform.d.ts
CHANGED
|
@@ -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
|
|
196
|
-
protected
|
|
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
|
}
|