GitHub a41d97a0 | 3 年前 | |
---|---|---|
Assets | 3 年前 | |
Packages | 3 年前 | |
ProjectSettings | 3 年前 | |
~Documentation/Images | 3 年前 | |
.gitignore | 3 年前 | |
README.md | 3 年前 |
README.md
Closed Beta - 7/14/21
Lobby and Relay are only available in closed beta at the moment, to use these services you will need to have signed up here for the services to show in your Organization: https://create.unity3d.com/relay-lobby-beta-signup
Game Lobby Sample
Unity 2021.0b1
This is a Unity Project Sample showing how to integrate Lobby and Relay into a typical Game Lobby experience.
Features Covered:
- Lobby Creation
- Lobby Query
- Lobby Data Sync
- Emotes
- Player Names
- Player Ready Check State
- Lobby Join
- Relay Server Creation
- Relay Code Generation
- Relay Server Join
Service Organization Setup
** Create an organization.**
Follow the attached guide to set up your cloud organization:
Lobby
We use the lobby service to create a space that our users can join and share data through.
Navigate to https://dashboard.unity3d.com/lobby
(This will only be visibile if you are in the closed beta)
In the bottom left, select "Get Started"
Follow the steps until you hit "Lobby On"
Relay
We use the Relay service to obfuscate the Hosts' IP, while still allowing them to locally host strangers. Relay Overview
Navigate to https://dashboard.unity3d.com/relay
(This will only be visibile if you are in the closed beta)
In the bottom left, select "Get Started"
Follow the steps until you hit "Relay On" (Current version of the sample does not use transport, so you may skip it.)
Unity Editor Setup
In the project, navigate to Edit => Project Settings => Services
Select your organization from the drop-down, and push Create Project ID.
In the end your Service window should look like this!
Solo Testing
Create a new Unity Build of the project in the OS of your choice. Because the Authentication service creates a unique ID for builds, you will need to host a lobby in Build and join in Editor or vice versa.
- Start the game, and hit start to enter the Room List. This Queries the rooms service for available Lobbies, there wont be any right now.
- The Create Menu Lets you make a new Lobby.
- This is the Lobby, It has a Room code for you to share with your friends to allow them to join. For demonstration purposes we also show the Relay Code, which will be passed to all users in the Lobby.
- Open the second game instance in Editor or in Build, you should now see your Lobby in the list.
- The Lobby holds up to 4 players and will pass the Relay code once all the players are ready.
- The countdown will start after the rooms data synch has completed. (It is a little slow due to our refresh rate being low at the moment)
- The relay service IP gets passed to all users in the lobby, and this is where you would connect to a server, if you had one.