hytopia 0.3.34 → 0.4.1-dev.1
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/bun.lock +32 -3
- package/examples/child-entity/assets/models/.optimized/sword/baseColor.png +0 -0
- package/examples/child-entity/assets/models/.optimized/sword/sword-named-nodes.bin +0 -0
- package/examples/child-entity/assets/models/.optimized/sword/sword-named-nodes.gltf +356 -0
- package/examples/child-entity/assets/models/.optimized/sword/sword.bin +0 -0
- package/examples/child-entity/assets/models/.optimized/sword/sword.gltf +136 -0
- package/examples/child-entity/assets/models/.optimized/sword/sword.gltf.md5 +1 -0
- package/examples/wall-dodge-game/bun.lock +17 -0
- package/package.json +8 -3
- package/server.api.json +1 -1
- package/server.d.ts +2 -0
- package/server.js +130 -124
- package/tsdoc-metadata.json +1 -1
package/server.d.ts
CHANGED
@@ -5,6 +5,7 @@ import http from 'http';
|
|
5
5
|
import type { IncomingMessage } from 'http';
|
6
6
|
import type { InputSchema } from '@hytopia.com/server-protocol';
|
7
7
|
import type { LobbyMembershipDto } from '@hytopia.com/creative-lib/dist/impl/getSession';
|
8
|
+
import mediasoup from 'mediasoup';
|
8
9
|
import protocol from '@hytopia.com/server-protocol';
|
9
10
|
import RAPIER from '@dimforge/rapier3d-simd-compat';
|
10
11
|
import { SdpMatrix3 } from '@dimforge/rapier3d-simd-compat';
|
@@ -3250,6 +3251,7 @@ export declare class Player extends EventRouter implements protocol.Serializable
|
|
3250
3251
|
|
3251
3252
|
|
3252
3253
|
|
3254
|
+
|
3253
3255
|
/** The current {@link PlayerInput} of the player. */
|
3254
3256
|
get input(): PlayerInput;
|
3255
3257
|
/** The current {@link World} the player is in. */
|