@hytopia.com/server-protocol 1.4.56-dev1 → 1.4.56-dev2
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
|
@@ -4,6 +4,8 @@ export type ModelAnimationSchema = {
|
|
|
4
4
|
n: string; // animation name
|
|
5
5
|
b?: number; // blend mode enum index
|
|
6
6
|
c?: boolean; // clamp when finished
|
|
7
|
+
fi?: boolean; // fades in
|
|
8
|
+
fo?: boolean; // fades out
|
|
7
9
|
l?: number; // loop mode enum index
|
|
8
10
|
p?: boolean; // play
|
|
9
11
|
pa?: boolean; // pause
|
|
@@ -19,6 +21,8 @@ export const modelAnimationSchema: JSONSchemaType<ModelAnimationSchema> = {
|
|
|
19
21
|
n: { type: 'string' },
|
|
20
22
|
b: { type: 'number', nullable: true },
|
|
21
23
|
c: { type: 'boolean', nullable: true },
|
|
24
|
+
fi: { type: 'boolean', nullable: true },
|
|
25
|
+
fo: { type: 'boolean', nullable: true },
|
|
22
26
|
l: { type: 'number', nullable: true },
|
|
23
27
|
p: { type: 'boolean', nullable: true },
|
|
24
28
|
pa: { type: 'boolean', nullable: true },
|