@hytopia.com/server-protocol 1.4.56-dev3 → 1.4.56-dev4

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.4.56-dev3",
3
+ "version": "1.4.56-dev4",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -14,6 +14,7 @@ export type ModelNodeOverrideSchema = {
14
14
  h?: boolean; // hidden
15
15
  p?: VectorSchema; // local position
16
16
  r?: QuaternionSchema; // local rotation
17
+ rm?: boolean; // removed/remove
17
18
  s?: VectorSchema; // local scale
18
19
  }
19
20
 
@@ -26,6 +27,7 @@ export const modelNodeOverrideSchema: JSONSchemaType<ModelNodeOverrideSchema> =
26
27
  h: { type: 'boolean', nullable: true },
27
28
  p: { ...vectorSchema, nullable: true },
28
29
  r: { ...quaternionSchema, nullable: true },
30
+ rm: { type: 'boolean', nullable: true },
29
31
  s: { ...vectorSchema, nullable: true },
30
32
  },
31
33
  required: [ 'n' ],