@hytopia.com/server-protocol 1.4.56-dev5 → 1.4.56-dev6
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 +1 -1
- package/schemas/Entity.ts +1 -3
package/package.json
CHANGED
package/schemas/Entity.ts
CHANGED
|
@@ -33,8 +33,7 @@ export type EntitySchema = {
|
|
|
33
33
|
r?: QuaternionSchema; // rotation
|
|
34
34
|
ri?: number; // rotation interpolation time in milliseconds
|
|
35
35
|
rm?: boolean; // removed/remove
|
|
36
|
-
|
|
37
|
-
si?: number; // scale interpolation time in milliseconds
|
|
36
|
+
si?: number; // model scale interpolation time in milliseconds
|
|
38
37
|
sv?: VectorSchema; // model scale vector for each axis
|
|
39
38
|
t?: RgbColorSchema; // tint color
|
|
40
39
|
}
|
|
@@ -62,7 +61,6 @@ export const entitySchema: JSONSchemaType<EntitySchema> = {
|
|
|
62
61
|
r: { ...quaternionSchema, nullable: true },
|
|
63
62
|
ri: { type: 'number', nullable: true },
|
|
64
63
|
rm: { type: 'boolean', nullable: true },
|
|
65
|
-
s: { type: 'number', nullable: true },
|
|
66
64
|
si: { type: 'number', nullable: true },
|
|
67
65
|
sv: { ...vectorSchema, nullable: true },
|
|
68
66
|
t: { ...rgbColorSchema, nullable: true },
|