Version: 2021.3
public string name ;

描述

该 GUIStyle 的名称。用于根据名称获取 GUIStyle。

using UnityEngine;

public class Example : MonoBehaviour { // Prints the name of the style.

void OnGUI() { Debug.Log(GUI.skin.button.name); } }