UnityEditor.NetworkManagerHUDEditor.ShowMatchMakerInfo C# (CSharp) Method

ShowMatchMakerInfo() private method

private ShowMatchMakerInfo ( ) : void
return void
        private void ShowMatchMakerInfo()
        {
            if (this.m_Manager.matchMaker != null)
            {
                this.m_ShowMatchMaker = EditorGUILayout.Foldout(this.m_ShowMatchMaker, this.m_ShowMatchMakerLabel);
                if (this.m_ShowMatchMaker)
                {
                    EditorGUI.indentLevel++;
                    EditorGUILayout.BeginVertical(new GUILayoutOption[0]);
                    EditorGUILayout.LabelField("Match Information", (this.m_Manager.matchInfo != null) ? this.m_Manager.matchInfo.ToString() : "None", new GUILayoutOption[0]);
                    EditorGUILayout.EndVertical();
                    EditorGUI.indentLevel--;
                }
            }
        }