@galacean/engine-physics-physx 1.0.0-beta.20 → 1.0.0-beta.21

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-physics-physx",
3
- "version": "1.0.0-beta.20",
3
+ "version": "1.0.0-beta.21",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -23,11 +23,11 @@
23
23
  "types/**/*"
24
24
  ],
25
25
  "devDependencies": {
26
- "@galacean/engine-design": "1.0.0-beta.20",
27
- "@galacean/engine": "1.0.0-beta.20"
26
+ "@galacean/engine-design": "1.0.0-beta.21",
27
+ "@galacean/engine": "1.0.0-beta.21"
28
28
  },
29
29
  "peerDependencies": {
30
- "@galacean/engine": "1.0.0-beta.20"
30
+ "@galacean/engine": "1.0.0-beta.21"
31
31
  },
32
32
  "scripts": {
33
33
  "b:types": "tsc"
@@ -1,5 +1,5 @@
1
- import { IColliderShape } from "@galacean/engine-design";
2
1
  import { Quaternion, Vector3 } from "@galacean/engine";
2
+ import { IColliderShape } from "@galacean/engine-design";
3
3
  import { PhysXPhysics } from "../PhysXPhysics";
4
4
  import { PhysXPhysicsMaterial } from "../PhysXPhysicsMaterial";
5
5
  /**
@@ -23,7 +23,7 @@ export declare abstract class PhysXColliderShape implements IColliderShape {
23
23
  rotation: any;
24
24
  };
25
25
  protected _physXPhysics: PhysXPhysics;
26
- protected _scale: Vector3;
26
+ protected _worldScale: Vector3;
27
27
  protected _position: Vector3;
28
28
  protected _rotation: Vector3;
29
29
  protected _axis: Quaternion;