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 91011121314151617181920
publicclassSolisNetworkManager:NetworkManager{publicGameObjectrobotPrefab;publicTransformrobotSpawnPoint;publicTransformhumanSpawnPoint;privatevoidAwake(){if(Instance==this||Instance==null)DontDestroyOnLoad(this.gameObject);elseDestroy(this.gameObject);}protectedoverridevoidOnSpawnPlayer(intclientId){varprefab=clientId==0?playerPrefab:robotPrefab;vart=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.