Version: 2017.3
public Font font ;

Descripción

The font to use for rendering. If null, the default font for the current GUISkin is used instead.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { Debug.Log("Font name: " + GUI.skin.button.font.name); } }