Version: 2022.2
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); } }