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

GUISkin.box

Declaration

public GUIStyle box;

Описание

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

using UnityEngine;

public class Example : MonoBehaviour { // Modifies only the box style of the current GUISkin

GUIStyle style;

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