hover
Rendering settings for when the mouse is hovering over the control.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public GUIStyleState hover { get; set; }
Examples
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); }}