Version: 2017.2
public GUIStyle textArea ;

Description

Стиль, используемый по умолчанию для GUI.TextArea элементов.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GUIStyle style; private string str = "A string...\nWith two lines."; void OnGUI() { GUI.skin.textArea = style; str = GUILayout.TextArea(str); } }