There are a number of events that can occur over the course of the normal operation of a multiplayer game, such as the host starting up, a player joining, or a player leaving. Each of these possible events has an associated callback that you can implement in your own code to take action when the event occurs.
To do this for the Network ManagerA Networking component that manages the network state of a Project. More info
See in Glossary, you need to create your own script which inherits from NetworkManager. You can then override the virtual methods on NetworkManager with your own implementation of what should happen when the given event occurs.
This page lists all the virtual methods (the callbacks) that you can implement on the Network Manager, and when they occur. The callbacks that occur, and the order they occur, vary slightly depending on whether your game is running in LAN mode or Internet (matchmaker) mode, so each mode’s callbacks are listed separately below.
These are the callbacks that occur when the game is running on a Local Area Connection (LAN). A game can be running in one of three modes, host, client, or server-only. The callbacks for each mode are listed below:
When the host is started:
Start()
function is called
OnStartHost
OnStartServer
OnServerConnect
OnStartClient
OnClientConnect
OnServerSceneChanged
OnServerReady
OnServerAddPlayer
OnClientSceneChanged
When a client connects:
OnServerConnect
OnServerReady
OnServerAddPlayer
When a client disconnects:
OnServerDisconnect
When the host is stopped:
OnStopHost
OnStopServer
OnStopClient
When the client starts:
Start()
function is called
OnStartClient
OnClientConnect
OnClientSceneChanged
When the client stops:
OnStopClient
OnClientDisconnect
When the server starts:
Start()
function is called
OnStartServer
OnServerSceneChanged
When a client connects:
OnServerConnect
OnServerReady
OnServerAddPlayer
When a client disconnects:
OnServerDisconnect
When the server stops:
OnStopServer
These are the callbacks which occur when the game is running in Internet mode (i.e. when you are using the MatchMaker service to find and connect to other players. In this mode, a game can be running in one of two modes, host, or client. The callbacks for each mode are listed below:
When the host starts:
Start()
function is called
OnStartHost
OnStartServer
OnServerConnect
OnStartClient
OnMatchCreate
OnClientConnect
OnServerSceneChanged
OnServerReady
OnServerAddPlayer
OnClientSceneChanged
When a client connects:
OnServerConnect
OnServerReady
OnServerAddPlayer
When a client disconnects:
OnServerDisconnect
When receiving a list of online game instances:
Start()
function is called
OnMatchList
When joining a match:
OnStartClient
OnMatchJoined
OnClientConnect
OnClientSceneChanged
When the host stops:
OnStopClient
OnClientDisconnect
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Is something described here not working as you expect it to? It might be a Known Issue. Please check with the Issue Tracker at issuetracker.unity3d.com.
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thanks for helping to make the Unity documentation better!