このページを含むバージョン:
このページを含まないバージョン:
GUI.Label で使用されるスタイル
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public GUIStyle style; void OnGUI() { GUI.skin.label = style; GUILayout.Label("This is a label."); } }