UnityEditor.AvatarMuscleEditor.HeaderGUI C# (CSharp) Méthode

HeaderGUI() private méthode

private HeaderGUI ( string h1, string h2 ) : void
h1 string
h2 string
Résultat void
        private void HeaderGUI(string h1, string h2)
        {
            GUILayout.BeginHorizontal(new GUILayoutOption[0]);
            GUILayoutOption[] options = new GUILayoutOption[] { GUILayout.Width(80f) };
            GUILayout.Label(h1, styles.title, options);
            GUILayoutOption[] optionArray2 = new GUILayoutOption[] { GUILayout.ExpandWidth(true) };
            GUILayout.Label(h2, styles.title, optionArray2);
            GUILayout.EndHorizontal();
        }