hytopia 0.1.82 → 0.1.84
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/docs/server.contactmanifold.md +1 -0
- package/package.json +1 -1
- package/server.api.json +11 -2
- package/server.d.ts +2 -0
- package/server.js +1 -1
package/package.json
CHANGED
package/server.api.json
CHANGED
@@ -9430,7 +9430,16 @@
|
|
9430
9430
|
},
|
9431
9431
|
{
|
9432
9432
|
"kind": "Content",
|
9433
|
-
"text": "{\n
|
9433
|
+
"text": "{\n contactPoints: "
|
9434
|
+
},
|
9435
|
+
{
|
9436
|
+
"kind": "Reference",
|
9437
|
+
"text": "Vector3Like",
|
9438
|
+
"canonicalReference": "server!Vector3Like:interface"
|
9439
|
+
},
|
9440
|
+
{
|
9441
|
+
"kind": "Content",
|
9442
|
+
"text": "[];\n localNormalA: "
|
9434
9443
|
},
|
9435
9444
|
{
|
9436
9445
|
"kind": "Reference",
|
@@ -9469,7 +9478,7 @@
|
|
9469
9478
|
"name": "ContactManifold",
|
9470
9479
|
"typeTokenRange": {
|
9471
9480
|
"startIndex": 1,
|
9472
|
-
"endIndex":
|
9481
|
+
"endIndex": 10
|
9473
9482
|
}
|
9474
9483
|
},
|
9475
9484
|
{
|
package/server.d.ts
CHANGED
@@ -1229,6 +1229,8 @@ export declare type ContactForceData = {
|
|
1229
1229
|
|
1230
1230
|
/** A contact manifold. @public */
|
1231
1231
|
export declare type ContactManifold = {
|
1232
|
+
/** The contact points as global coordinates. */
|
1233
|
+
contactPoints: Vector3Like[];
|
1232
1234
|
/** The local normal vector of the first collider. */
|
1233
1235
|
localNormalA: Vector3Like;
|
1234
1236
|
/** The local normal vector of the second collider. */
|