@hytopia.com/server-protocol 1.0.58 → 1.0.59

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": "@hytopia.com/server-protocol",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -25,7 +25,6 @@ export type RigidBodySchema = {
25
25
  ld?: number; // linear damping
26
26
  lv?: VectorSchema; // linear velocity
27
27
  r?: QuaternionSchema; // rotation
28
- rm?: boolean; // removed
29
28
  sl?: boolean; // sleeping
30
29
  scp?: number; // soft ccd prediction
31
30
  t?: VectorSchema; // translation
@@ -50,7 +49,6 @@ export const rigidBodySchema: JSONSchemaType<RigidBodySchema> = {
50
49
  ld: { type: 'number', nullable: true },
51
50
  lv: { ...vectorSchema, nullable: true },
52
51
  r: { ...quaternionSchema, nullable: true },
53
- rm: { type: 'boolean', nullable: true },
54
52
  sl: { type: 'boolean', nullable: true },
55
53
  scp: { type: 'number', nullable: true },
56
54
  t: { ...vectorSchema, nullable: true },