hytopia 0.1.32 → 0.1.33

Sign up to get free protection for your applications and to get access to all the features.
@@ -827,7 +827,7 @@ The port the server will run on. You can override this in your .env by setting P
827
827
 
828
828
  </td><td>
829
829
 
830
- The input keys included in the PlayerInputState.
830
+ The input keys that can be included in the PlayerInputState.
831
831
 
832
832
 
833
833
  </td></tr>
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## HYTOPIA.SUPPORTED\_INPUT\_KEYS variable
6
6
 
7
- The input keys included in the PlayerInputState.
7
+ The input keys that can be included in the PlayerInputState.
8
8
 
9
9
  **Signature:**
10
10
 
package/docs/server.md CHANGED
@@ -836,7 +836,7 @@ The port the server will run on. You can override this in your .env by setting P
836
836
 
837
837
  </td><td>
838
838
 
839
- The input keys included in the PlayerInputState.
839
+ The input keys that can be included in the PlayerInputState.
840
840
 
841
841
 
842
842
  </td></tr>
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## SUPPORTED\_INPUT\_KEYS variable
6
6
 
7
- The input keys included in the PlayerInputState.
7
+ The input keys that can be included in the PlayerInputState.
8
8
 
9
9
  **Signature:**
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hytopia",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "description": "The HYTOPIA SDK makes it easy for developers to create multiplayer games on the HYTOPIA platform using JavaScript or TypeScript.",
5
5
  "main": "server.js",
6
6
  "bin": {
package/server.api.json CHANGED
@@ -31335,7 +31335,7 @@
31335
31335
  {
31336
31336
  "kind": "Variable",
31337
31337
  "canonicalReference": "server!HYTOPIA.SUPPORTED_INPUT_KEYS:var",
31338
- "docComment": "/**\n * The input keys included in the PlayerInputState.\n *\n * @public\n */\n",
31338
+ "docComment": "/**\n * The input keys that can be included in the PlayerInputState.\n *\n * @public\n */\n",
31339
31339
  "excerptTokens": [
31340
31340
  {
31341
31341
  "kind": "Content",
@@ -41302,7 +41302,7 @@
41302
41302
  {
41303
41303
  "kind": "Variable",
41304
41304
  "canonicalReference": "server!SUPPORTED_INPUT_KEYS:var",
41305
- "docComment": "/**\n * The input keys included in the PlayerInputState.\n *\n * @public\n */\n",
41305
+ "docComment": "/**\n * The input keys that can be included in the PlayerInputState.\n *\n * @public\n */\n",
41306
41306
  "excerptTokens": [
41307
41307
  {
41308
41308
  "kind": "Content",
package/server.d.ts CHANGED
@@ -2725,7 +2725,7 @@ export declare interface SpdMatrix3 extends SdpMatrix3 {
2725
2725
  */
2726
2726
  export declare function startServer(init: (world: World) => void): void;
2727
2727
 
2728
- /** The input keys included in the PlayerInputState. @public */
2728
+ /** The input keys that can be included in the PlayerInputState. @public */
2729
2729
  export declare const SUPPORTED_INPUT_KEYS: readonly ["w", "a", "s", "d", "sp", "sh", "tb", "ml", "mr", "q", "e", "r", "f", "z", "x", "c", "v", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"];
2730
2730
 
2731
2731
  /** A 3-dimensional vector. @public */