Legacy Documentation: Version 5.2
Converting a Single Player Game to Multiplayer
Network Clients and Servers

Multiplayer Lobby

Many multiplayer games have a staging area for players to join before playing the actual game. In this area - often called the “lobby”, players may be able to pick options and be able to set themselves as ready for the game to start.

The NetworkLobbyManager is a specialized NetworkManager that provides a lobby for Unity Multiplayer games. It includes:

  • Limit on number of players that can join
  • Support for multiple players per client with a limit on number of players per client
  • Prevent players from joining game in-progress
  • Per-player ready state, so that game starts when all players are ready
  • Per-player configuration data
  • Re-joining the lobby when the game is finished
  • Virtual functions that allow custom logic for lobby events

The GuiLobbyManager is a special lobby manager that provides a user-interface for the lobby. It is available as an asset package and can be imported into Unity projects to easily add a lobby to multiplayer games. The scripts and UI prefabs in the package can be customized to make the look and feel of the lobby unique for any game.

Lobby Player Objects

There are two kinds of player objects - each which has a prefab slot in the NetworkLobbyManager:

LobbyPlayer Object

  • One for each player
  • Created when client connects, or player is added
  • Exists until client disconnects
  • Holds the ready flag for this player for the lobby
  • Handles commands while in the lobby
  • Add user scripts to this prefab to hold game-specific player data

GamePlayer Object

  • One for each player
  • Created when game scene is started
  • Destroyed when re-entering lobby
  • Handles commands while in the game

The NetworkLobbyPlayer component is used for LobbyPlayer objects. It supplies some virtual function callbacks that can be used for custom lobby behaviour

    public virtual void OnClientEnterLobby()
    {
    }

    public virtual void OnClientExitLobby()
    {
    }

    public virtual void OnClientReady(bool readyState)
    {
    }

Adding the Lobby to a Game

Process for adding a NetworkLobby to a multiplayer game (without using the multiplayer-lobby asset package):

  • Create a new lobby scene
  • Add the scene to the build settings, as the first scene
  • Create a new game object in the new scene, rename it to LobbyManager
  • Add the NetworkLobbyManager component to the LobbyManager object
  • Add the NetworkManagerHUD component to the LobbyManager object
  • Open the inspector for the NetworkLobbyManager component
  • Set the LobbyScene to the current scene
  • Set the PlayScene to the main game-play scene for the game
  • Create a new gameObject and rename it to LobbyPlayer
  • Add the NetworkLobbyPlayer component to the LobbyPlayer
  • Create a prefab for the LobbyPlayer and delete the instance from the scene
  • Set the LobbyPlayerPrefab slot to the LobbyPlayer prefab
  • Set the GamePlayerPrefab slot to the prefab for the player in the main game
  • Save the scene.
  • Run the game

This version of the NetworkLobbyManager uses the OnGUI user interface like the NetworkManagerHUD. For a better user interface use the multiplayer-lobby asset package.

The NetworkLobbyManager has many virtual function callbacks that can be used for custom lobby behaviour. Most important is OnLobbyServerSceneLoadedForPlayer which is called on the server for each player as they transition from the lobby to the main game. This is the ideal place to apply settings from the lobby to the player’s game-play object.

    // for users to apply settings from their lobby player object to their in-game player object
    public override bool OnLobbyServerSceneLoadedForPlayer(GameObject lobbyPlayer, GameObject gamePlayer)
    {
        var cc = lobbyPlayer.GetComponent<ColorControl>();
        var player = gamePlayer.GetComponent<Player>();
        player.myColor = cc.myColor;
        return true;
    }
Converting a Single Player Game to Multiplayer
Network Clients and Servers