版本: Unity 6 (6000.0)
语言英语
  • C#

GUISkin.font

建议更改

成功!

感谢您帮助我们改进 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读了用户提出的每个建议更改,并将根据需要进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们改进 Unity 文档的质量。

关闭

取消

切换到手册
public Font font;

描述

所有样式使用的默认字体。

using UnityEngine;

public class Example : MonoBehaviour { // Modifies the font only of the current GUISkin.

public Font font;

void OnGUI() { if (!font) { Debug.LogError("No font found, assign one in the inspector."); return; } GUI.skin.font = font;

GUILayout.Label("This is a label with the font"); GUILayout.Button("And this is a button"); } }