Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion testproject/Assets/Tests/Manual/Scripts/StatsDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public class StatsDisplay : NetworkBehaviour
private Text m_ClientServerToggleText;
private List<ulong> m_ClientsToUpdate = new List<ulong>();


private bool m_IsServer;

private void Start()
Expand Down Expand Up @@ -72,6 +71,14 @@ private void OnClientConnectedCallback(ulong clientId)
}
}

/// <summary>
/// Remove our OnClientConnectedCallback registration when we are destroyed
/// </summary>
private void OnDestroy()
{
NetworkManager.OnClientConnectedCallback -= OnClientConnectedCallback;
}

/// <summary>
/// Used by UI Button click event
/// </summary>
Expand Down