Version: 2020.1
言語: 日本語
public GUIStyle textArea ;

説明

GUI.TextArea で使用されるスタイル

using UnityEngine;

public class Example : MonoBehaviour { // Modifies only the textArea style of the current GUISkin

GUIStyle style; string str = "A string...\nWith two lines.";

void OnGUI() { GUI.skin.textArea = style; str = GUILayout.TextArea(str); } }