@galacean/engine-physics-physx 1.3.9 → 1.3.11

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.3.9",
3
+ "version": "1.3.11",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -26,11 +26,11 @@
26
26
  "types/**/*"
27
27
  ],
28
28
  "devDependencies": {
29
- "@galacean/engine": "1.3.9",
30
- "@galacean/engine-design": "1.3.9"
29
+ "@galacean/engine": "1.3.11",
30
+ "@galacean/engine-design": "1.3.11"
31
31
  },
32
32
  "peerDependencies": {
33
- "@galacean/engine": "1.3.9"
33
+ "@galacean/engine": "1.3.11"
34
34
  },
35
35
  "scripts": {
36
36
  "b:types": "tsc"
@@ -1,18 +0,0 @@
1
- /**
2
- * High-performance unordered array, delete uses exchange method to improve performance, internal capacity only increases.
3
- */
4
- export declare class DisorderedArray<T> {
5
- _elements: T[];
6
- length: number;
7
- constructor(count?: number);
8
- add(element: T): void;
9
- delete(element: T): void;
10
- get(index: number): T;
11
- /**
12
- *
13
- * @param index
14
- * @returns The replaced item is used to reset its index.
15
- */
16
- deleteByIndex(index: number): T;
17
- garbageCollection(): void;
18
- }