@galacean/engine-physics-physx 1.2.0-beta.2 → 1.2.0-beta.3

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.2.0-beta.2",
3
+ "version": "1.2.0-beta.3",
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.2.0-beta.2",
27
- "@galacean/engine": "1.2.0-beta.2"
26
+ "@galacean/engine-design": "1.2.0-beta.3",
27
+ "@galacean/engine": "1.2.0-beta.3"
28
28
  },
29
29
  "peerDependencies": {
30
- "@galacean/engine": "1.2.0-beta.2"
30
+ "@galacean/engine": "1.2.0-beta.3"
31
31
  },
32
32
  "scripts": {
33
33
  "b:types": "tsc"
@@ -8,6 +8,7 @@ import { PhysXColliderShape } from "./PhysXColliderShape";
8
8
  */
9
9
  export declare class PhysXBoxColliderShape extends PhysXColliderShape implements IBoxColliderShape {
10
10
  private static _tempHalfExtents;
11
+ private _sizeScale;
11
12
  constructor(physXPhysics: PhysXPhysics, uniqueID: number, size: Vector3, material: PhysXPhysicsMaterial);
12
13
  /**
13
14
  * {@inheritDoc IBoxColliderShape.setSize }
@@ -8,6 +8,7 @@ import { PhysXColliderShape } from "./PhysXColliderShape";
8
8
  */
9
9
  export declare class PhysXCapsuleColliderShape extends PhysXColliderShape implements ICapsuleColliderShape {
10
10
  private _upAxis;
11
+ private _sizeScale;
11
12
  constructor(physXPhysics: PhysXPhysics, uniqueID: number, radius: number, height: number, material: PhysXPhysicsMaterial);
12
13
  /**
13
14
  * {@inheritDoc ICapsuleColliderShape.setRadius }
@@ -1,5 +0,0 @@
1
- /**
2
- * Static interface implement decorator.
3
- * https://stackoverflow.com/questions/13955157/how-to-define-static-property-in-typescript-interface
4
- */
5
- export declare function StaticInterfaceImplement<T>(): <U extends T>(constructor: U) => void;