Style used by default for GUI.Box controls.
// Modifies only the box style of the current GUISkin
var style : GUIStyle;
function OnGUI() { GUI.skin.box = style; GUILayout.Box("This is a 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."); } }