@hytopia.com/server-protocol 1.4.10-dev1 → 1.4.11
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
|
@@ -29,6 +29,7 @@ export type ParticleEmitterSchema = {
|
|
|
29
29
|
rm?: boolean; // remove/removed
|
|
30
30
|
s?: number; // size, in pixels
|
|
31
31
|
sv?: number; // size variance, in pixels
|
|
32
|
+
t?: boolean; // transparent
|
|
32
33
|
tu?: string; // texture uri
|
|
33
34
|
v?: VectorSchema; // velocity per axis as vector3
|
|
34
35
|
vv?: VectorSchema; // velocity variance per axis as vector3
|
|
@@ -61,6 +62,7 @@ export const particleEmitterSchema: JSONSchemaType<ParticleEmitterSchema> = {
|
|
|
61
62
|
rm: { type: 'boolean', nullable: true },
|
|
62
63
|
s: { type: 'number', nullable: true },
|
|
63
64
|
sv: { type: 'number', nullable: true },
|
|
65
|
+
t: { type: 'boolean', nullable: true },
|
|
64
66
|
tu: { type: 'string', nullable: true },
|
|
65
67
|
v: { ...vectorSchema, nullable: true },
|
|
66
68
|
vv: { ...vectorSchema, nullable: true },
|