@galacean/engine-physics-lite 1.2.0-beta.1 → 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.
@@ -8,6 +8,7 @@ import { LiteColliderShape } from "./LiteColliderShape";
8
8
  export declare class LiteBoxColliderShape extends LiteColliderShape implements IBoxColliderShape {
9
9
  private static _tempBox;
10
10
  private _halfSize;
11
+ private _sizeScale;
11
12
  /**
12
13
  * Init Box Shape.
13
14
  * @param uniqueID - UniqueID mark Shape.
@@ -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;