@galacean/engine-physics-physx 2.0.0-alpha.36 → 2.0.0-alpha.38
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/browser.js +10 -13
- package/dist/browser.js.map +1 -1
- package/dist/browser.min.js +1 -1
- package/dist/browser.min.js.map +1 -1
- package/dist/main.js +10 -13
- package/dist/main.js.map +1 -1
- package/dist/module.js +10 -13
- package/dist/module.js.map +1 -1
- package/libs/physx.release.simd.wasm +0 -0
- package/libs/physx.release.wasm +0 -0
- package/package.json +4 -4
- package/types/PhysXDynamicCollider.d.ts +4 -0
|
Binary file
|
package/libs/physx.release.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/engine-physics-physx",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.38",
|
|
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-design": "2.0.0-alpha.
|
|
30
|
-
"@galacean/engine": "2.0.0-alpha.
|
|
29
|
+
"@galacean/engine-design": "2.0.0-alpha.38",
|
|
30
|
+
"@galacean/engine": "2.0.0-alpha.38"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@galacean/engine": "2.0.0-alpha.
|
|
33
|
+
"@galacean/engine": "2.0.0-alpha.38"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"b:types": "tsc"
|
|
@@ -107,6 +107,10 @@ export declare class PhysXDynamicCollider extends PhysXCollider implements IDyna
|
|
|
107
107
|
* {@inheritDoc IDynamicCollider.addForce }
|
|
108
108
|
*/
|
|
109
109
|
addForce(force: Vector3): void;
|
|
110
|
+
/**
|
|
111
|
+
* {@inheritDoc IDynamicCollider.addForceAtPosition }
|
|
112
|
+
*/
|
|
113
|
+
addForceAtPosition(force: Vector3, position: Vector3): void;
|
|
110
114
|
/**
|
|
111
115
|
* {@inheritDoc IDynamicCollider.addTorque }
|
|
112
116
|
*/
|