UnityEditor.NetworkManagerHUDEditor.ShowMatchMakerInfo C# (CSharp) Метод

ShowMatchMakerInfo() приватный Метод

private ShowMatchMakerInfo ( ) : void
Результат 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--;
                }
            }
        }