Version: 2017.1
public GUIStyle label ;

Descripción

Style used by default for GUI.Label controls.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GUIStyle style; void OnGUI() { GUI.skin.label = style; GUILayout.Label("This is a label."); } }