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

GUISkin.label

Declaration

public GUIStyle label;

Описание

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

using UnityEngine;

public class Example : MonoBehaviour { // Modifies only the label style of the current GUISkin GUIStyle style;

void OnGUI() { GUI.skin.label = style; GUILayout.Label("This is a label."); } }