GUISkin.button

var button : GUIStyle

Description

Style used by default for GUI.Button controls.

JavaScript
// Modifies only the button style of the current GUISkin

var style : GUIStyle;

function OnGUI() {
GUI.skin.button = style;
GUILayout.Button("This is a button.");
}