Unity 6.3
0 онлайн 76 гостей 3 в системе
Вход

GUISkin.textArea

Declaration

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