GUISkin.label

var label : GUIStyle

Description

Style used by default for GUI.Label controls.

JavaScript
// Modifies only the label style of the current GUISkin
var style : GUIStyle;

function OnGUI() {
GUI.skin.label = style;
GUILayout.Label("This is a label.");
}