Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GUISkin.font

public var font: Font;

Description

The default font to use for all styles.

	// Modifies the font only of the current GUISkin.

var f : Font;

function OnGUI() { if(!f) { Debug.LogError("No font found, assign one in the inspector."); return; } GUI.skin.font = f; GUILayout.Label("This is a label with the font"); GUILayout.Button("And this is a button"); }