@hytopia.com/server-protocol 1.3.23 → 1.3.25
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 +2 -0
package/package.json
CHANGED
package/schemas/Entity.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type EntitySchema = {
|
|
|
10
10
|
i: number; // entity id
|
|
11
11
|
al?: string[]; // model animations looped
|
|
12
12
|
ao?: string[]; // model animations one shot
|
|
13
|
+
ap?: number; // model animations playback rate
|
|
13
14
|
as?: string[]; // model animations stop
|
|
14
15
|
bh?: VectorSchema; // block half extents
|
|
15
16
|
bt?: string; // block texture uri
|
|
@@ -29,6 +30,7 @@ export const entitySchema: JSONSchemaType<EntitySchema> = {
|
|
|
29
30
|
i: { type: 'number' },
|
|
30
31
|
al: { type: 'array', items: { type: 'string' }, nullable: true },
|
|
31
32
|
ao: { type: 'array', items: { type: 'string' }, nullable: true },
|
|
33
|
+
ap: { type: 'number', nullable: true },
|
|
32
34
|
as: { type: 'array', items: { type: 'string' }, nullable: true },
|
|
33
35
|
bh: { ...vectorSchema, nullable: true },
|
|
34
36
|
bt: { type: 'string', nullable: true },
|