NetworkRoomManager - Removed OnRoomClientAddPlayerFailed virtual method

- Fixes #3168
- There is no good place to call that - use OnRoomClientDisconnect or OnRoomStopClient
This commit is contained in:
MrGadget 2022-11-26 14:03:29 -05:00
parent 71668c530f
commit abd1c1689d
2 changed files with 9 additions and 11 deletions

View File

@ -233,6 +233,7 @@ internal void CallOnClientExitRoom()
} }
#region server handlers #region server handlers
/// <summary> /// <summary>
/// Called on the server when a new client connects. /// Called on the server when a new client connects.
/// <para>Unity calls this on the Server when a Client connects to the Server. Use an override to tell the NetworkManager what to do when a client connects to the server.</para> /// <para>Unity calls this on the Server when a Client connects to the Server. Use an override to tell the NetworkManager what to do when a client connects to the server.</para>
@ -438,9 +439,11 @@ public override void OnStopHost()
{ {
OnRoomStopHost(); OnRoomStopHost();
} }
#endregion #endregion
#region client handlers #region client handlers
/// <summary> /// <summary>
/// This is invoked when the client is started. /// This is invoked when the client is started.
/// </summary> /// </summary>
@ -504,9 +507,11 @@ public override void OnClientSceneChanged()
base.OnClientSceneChanged(); base.OnClientSceneChanged();
OnRoomClientSceneChanged(); OnRoomClientSceneChanged();
} }
#endregion #endregion
#region room server virtuals #region room server virtuals
/// <summary> /// <summary>
/// This is called on the host when a host is started. /// This is called on the host when a host is started.
/// </summary> /// </summary>
@ -608,9 +613,11 @@ public virtual void OnRoomServerPlayersReady()
/// <para>May be called multiple times while not ready players are joining</para> /// <para>May be called multiple times while not ready players are joining</para>
/// </summary> /// </summary>
public virtual void OnRoomServerPlayersNotReady() {} public virtual void OnRoomServerPlayersNotReady() {}
#endregion #endregion
#region room client virtuals #region room client virtuals
/// <summary> /// <summary>
/// This is a hook to allow custom behaviour when the game client enters the room. /// This is a hook to allow custom behaviour when the game client enters the room.
/// </summary> /// </summary>
@ -646,14 +653,10 @@ public virtual void OnRoomStopClient() {}
/// </summary> /// </summary>
public virtual void OnRoomClientSceneChanged() {} public virtual void OnRoomClientSceneChanged() {}
/// <summary>
/// Called on the client when adding a player to the room fails.
/// <para>This could be because the room is full, or the connection is not allowed to have more players.</para>
/// </summary>
public virtual void OnRoomClientAddPlayerFailed() {}
#endregion #endregion
#region optional UI #region optional UI
/// <summary> /// <summary>
/// virtual so inheriting classes can roll their own /// virtual so inheriting classes can roll their own
/// </summary> /// </summary>
@ -673,6 +676,7 @@ public virtual void OnGUI()
if (IsSceneActive(RoomScene)) if (IsSceneActive(RoomScene))
GUI.Box(new Rect(10f, 180f, 520f, 150f), "PLAYERS"); GUI.Box(new Rect(10f, 180f, 520f, 150f), "PLAYERS");
} }
#endregion #endregion
} }
} }

View File

@ -159,12 +159,6 @@ public class #SCRIPTNAME# : NetworkRoomManager
/// </summary> /// </summary>
public override void OnRoomClientSceneChanged() { } public override void OnRoomClientSceneChanged() { }
/// <summary>
/// Called on the client when adding a player to the room fails.
/// <para>This could be because the room is full, or the connection is not allowed to have more players.</para>
/// </summary>
public override void OnRoomClientAddPlayerFailed() { }
#endregion #endregion
#region Optional UI #region Optional UI