Version: 2022.1
言語: 日本語
public GUIStyleState hover ;

説明

マウスがコントロールの上にあるときのレンダリング設定

using UnityEngine;

public class Example : MonoBehaviour { // Prints the text color that button is using // when the mouse is hovering over a control

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