hytopia 0.6.6 → 0.6.7
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/README.md +3 -3
- package/bun-server.mjs +141 -141
- package/docs/server.collisiongroup.md +15 -15
- package/docs/server.moveoptions.md +1 -0
- package/docs/server.pathfindingentitycontroller._constructor_.md +49 -0
- package/docs/server.pathfindingentitycontroller.md +34 -0
- package/docs/server.playercamera.md +35 -0
- package/docs/server.playercamera.setshoulderangle.md +53 -0
- package/docs/server.playercamera.shoulderangle.md +13 -0
- package/docs/server.playercameraevent.md +14 -0
- package/docs/server.playercameraeventpayloads._player_camera.set_shoulder_angle_.md +16 -0
- package/docs/server.playercameraeventpayloads.md +19 -0
- package/docs/{server.rigidbody.createandaddchildcolliderstosimulation.md → server.rigidbody.createandaddchildcolliders.md} +7 -3
- package/docs/server.rigidbody.md +1 -1
- package/docs/server.simpleentitycontroller._constructor_.md +49 -0
- package/docs/server.simpleentitycontroller.md +62 -0
- package/docs/server.simpleentitycontroller.stopface.md +17 -0
- package/docs/server.simpleentitycontroller.stopmove.md +17 -0
- package/docs/server.supported_input_keys.md +1 -1
- package/node-server.mjs +148 -148
- package/package.json +1 -1
- package/server.api.json +301 -29
- package/server.d.ts +75 -15
package/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# HYTOPIA SDK
|
2
2
|
|
3
3
|
## Quick Links
|
4
|
-
[Quickstart (Start Here)](#quickstart-start-here) • [Developer Docs](https://dev.hytopia.com/) • [API Reference](./docs/server.md) • [Examples](
|
4
|
+
[Quickstart (Start Here)](#quickstart-start-here) • [Developer Docs](https://dev.hytopia.com/) • [API Reference](./docs/server.md) • [Examples](https://github.com/hytopiagg/sdk-examples) • [Join Our Developer Discord](https://discord.gg/hytopia-developers) • [Report Bugs or Request Features](https://github.com/hytopiagg/sdk/issues)
|
5
5
|
|
6
6
|
## What is HYTOPIA?
|
7
7
|
|
@@ -36,7 +36,7 @@ With these resources, you can quickly build and share immersive, voxel-style mul
|
|
36
36
|
|
37
37
|
Once you're up and running, here's some other resources to go further:
|
38
38
|
- [Developer Docs](https://dev.hytopia.com/)
|
39
|
-
- [Game Examples](
|
39
|
+
- [Game Examples](https://github.com/hytopiagg/sdk-examples)
|
40
40
|
- [API Reference](./docs/server.md)
|
41
41
|
|
42
42
|
## Architecture & Motivation
|
@@ -49,4 +49,4 @@ HYTOPIA overcomes the creativity limits of Minecraft, the complexities of Unity
|
|
49
49
|
|
50
50
|
Bring your own game assets as GLTF models with full server-driven animation support, block textures, ambient and sfx audio, and more - or use HYTOPIA's defaults included with this SDK to craft your game.
|
51
51
|
|
52
|
-
We built HYTOPIA to empower both veteran and aspiring game developers to create multiplayer-first, voxel-style, hyper-sharable games. Developer APIs and documentations are simple, powerful and clear. Whether you've been building games for years, a frontend web developer who's dreamed of building a game, an eager learner that's always dreamed of building games, or a curious school student, HYTOPIA was built for you..
|
52
|
+
We built HYTOPIA to empower both veteran and aspiring game developers to create multiplayer-first, voxel-style, hyper-sharable games. Developer APIs and documentations are simple, powerful and clear. Whether you've been building games for years, a frontend web developer who's dreamed of building a game, an eager learner that's always dreamed of building games, or a curious school student, HYTOPIA was built for you..
|