Version: 2022.3
언어: 한국어
public GUIStyle textArea ;

설명

Style used by default for GUI.TextArea controls.

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); } }