ChatGui.OnApplicationQuit C# (CSharp) Method

OnApplicationQuit() public method

To avoid the Editor becoming unresponsive, disconnect all Photon connections in OnApplicationQuit.
public OnApplicationQuit ( ) : void
return void
    public void OnApplicationQuit()
    {
        if (this.chatClient != null)
        {
            this.chatClient.Disconnect();
        }
    }