Skip to content

Custom Network Manager

Sometimes, the default implementation of the network manager may not meet all your needs. We recommend creating your own implementation of the NetworkManager to fit your project's requirements. In the following example, there's a custom implementation of the NetworkManager where we override the NetworkManager.OnSpawnPlayer method to meet the needs of our project (Solis):

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
public class SolisNetworkManager : NetworkManager
{
    public GameObject robotPrefab;
    public Transform robotSpawnPoint;
    public Transform humanSpawnPoint;

    private void Awake()
    {
        if (Instance == this || Instance == null) DontDestroyOnLoad(this.gameObject);
        else Destroy(this.gameObject);
    }

    protected override void OnSpawnPlayer(int clientId)
    {  
        var prefab = clientId == 0 ? playerPrefab : robotPrefab;
        var t = clientId == 0 ? humanSpawnPoint : robotSpawnPoint;
        Assert.IsTrue(prefabRegistry.IsPrefabValid(prefab), "Player prefab is not valid");
        SpawnNetworkObjectForClients(prefabRegistry.GetPrefabId(prefab), t.position, t.rotation, t.localScale, clientId);
    }
}

Network Callbacks

Tip

See the API reference of the NetworkManager class for the list of all properties and methods.