public static GUIStyle none ;

Descripción

Shortcut for an empty GUIStyle.

This style contains no decoration and just renders everything in the default font.

using UnityEngine;

public class Example : MonoBehaviour { void OnGUI() { // Make a button with no decoration GUI.Button(new Rect(0, 0, 250, 100), "Basic Button", GUIStyle.none); } }