hytopia 0.8.2-dev → 0.8.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hytopia",
3
- "version": "0.8.2-dev",
3
+ "version": "0.8.3",
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": "./node-server.mjs",
package/server.api.json CHANGED
@@ -42168,7 +42168,7 @@
42168
42168
  {
42169
42169
  "kind": "Interface",
42170
42170
  "canonicalReference": "server!RgbColor:interface",
42171
- "docComment": "/**\n * A RGB color.\n *\n * @public\n */\n",
42171
+ "docComment": "/**\n * A RGB color. r, g and b expect a value between 0 and 255.\n *\n * @public\n */\n",
42172
42172
  "excerptTokens": [
42173
42173
  {
42174
42174
  "kind": "Content",
package/server.d.ts CHANGED
@@ -5265,7 +5265,7 @@ export declare type RaycastOptions = {
5265
5265
  solidMode?: boolean;
5266
5266
  } & FilterOptions;
5267
5267
 
5268
- /** A RGB color. @public */
5268
+ /** A RGB color. r, g and b expect a value between 0 and 255. @public */
5269
5269
  export declare interface RgbColor {
5270
5270
  r: number;
5271
5271
  g: number;