Version: 5.3
public void OnMatchJoined (Networking.Match.JoinMatchResponse matchInfo);

설명

This is invoked when a match is joined.

The default implementation of this starts a client.

class MatchManager : NetworkManager
{
	public override void OnMatchJoined(JoinMatchResponse matchInfo)
	{
		if (matchInfo.success)
		{
			StartClient(new MatchInfo(matchInfo));
		}
	}
}