Version: 2020.3
언어: 한국어
public GUIStyleState onHover ;

설명

Rendering settings for when the control is turned on and the mouse is hovering it.

using UnityEngine;

public class Example : MonoBehaviour { void OnGUI() { GUI.skin.button.onHover.textColor = Color.cyan; } }