public GUIStyle label;
Описание
Стиль, используемый по умолчанию для элементов управления GUI.Label.
using UnityEngine;
public class Example : MonoBehaviour
{
// Modifies only the label style of the current GUISkinGUIStyle style;
void OnGUI()
{
GUI.skin.label = style;
GUILayout.Label("This is a label.");
}
}