@hytopia.com/server-protocol 1.4.43-dev → 1.4.43

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.43-dev",
3
+ "version": "1.4.43",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/schemas/Entity.ts CHANGED
@@ -19,7 +19,7 @@ export type EntitySchema = {
19
19
  e?: boolean; // environmental
20
20
  ec?: RgbColorSchema; // emissive color
21
21
  ei?: number; // emissive intensity
22
- h?: string[]; // model nodes to hide by partial case insensitive match of gltf node names
22
+ h?: string[]; // model nodes to hide by partial case insensitive match of gltf node names - merge into node overrides?
23
23
  m?: string; // model uri
24
24
  mo?: ModelNodeOverrideSchema[]; // model node overrides
25
25
  mt?: string; // model texture uri (custom override)
@@ -31,7 +31,7 @@ export type EntitySchema = {
31
31
  r?: QuaternionSchema; // rotation
32
32
  rm?: boolean; // removed/remove
33
33
  s?: number; // model scale - Deprecated as of 0.11.10, use sv
34
- sn?: string[]; // model nodes to show by partial case insensitive match of gltf node names
34
+ sn?: string[]; // model nodes to show by partial case insensitive match of gltf node names - merge into node overrides?
35
35
  sv?: VectorSchema; // model scale vector for each axis
36
36
  t?: RgbColorSchema; // tint color
37
37
  }