hytopia 0.14.41 → 0.14.42

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.
@@ -14,7 +14,8 @@ export type PlayerCosmetics = {
14
14
  slot: string;
15
15
  item: PlayerCosmeticsEquippedItem;
16
16
  }[];
17
- hairStyle: number;
17
+ hairModelUri?: string;
18
+ hairTextureUri?: string;
18
19
  skinTextureUri: string;
19
20
  };
20
21
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hytopia",
3
- "version": "0.14.41",
3
+ "version": "0.14.42",
4
4
  "description": "The HYTOPIA SDK makes it easy for developers to create massively multiplayer games using JavaScript or TypeScript.",
5
5
  "type": "module",
6
6
  "main": "./server.mjs",
package/server.api.json CHANGED
@@ -37946,7 +37946,7 @@
37946
37946
  },
37947
37947
  {
37948
37948
  "kind": "Content",
37949
- "text": ";\n }[];\n hairStyle: number;\n skinTextureUri: string;\n}"
37949
+ "text": ";\n }[];\n hairModelUri?: string;\n hairTextureUri?: string;\n skinTextureUri: string;\n}"
37950
37950
  },
37951
37951
  {
37952
37952
  "kind": "Content",
package/server.d.ts CHANGED
@@ -4740,7 +4740,8 @@ export declare type PlayerCosmetics = {
4740
4740
  slot: string;
4741
4741
  item: PlayerCosmeticsEquippedItem;
4742
4742
  }[];
4743
- hairStyle: number;
4743
+ hairModelUri?: string;
4744
+ hairTextureUri?: string;
4744
4745
  skinTextureUri: string;
4745
4746
  };
4746
4747