Version: 2022.1
언어: 한국어
public static GUIStyle none ;

설명

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); } }