Version: 2017.3
public GUIStyle box ;

Description

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GUIStyle style; void OnGUI() { GUI.skin.box = style; GUILayout.Box("This is a box."); } }