protected bool IsHighlighted (EventSystems.BaseEventData eventData);

描述

返回有关可选择对象当前是否“突出显示”的信息。

用于检查可选择 UI 元素当前是否已突出显示。

//Create a UI element. To do this go to Create>UI and select from the list. Attach this script to the UI GameObject to see this script working. The script also works with non-UI elements, but highlighting works better with UI.

using UnityEngine; using UnityEngine.UI;

//Use the Selectable class as a base class to access the IsHighlighted method public class Example : Selectable { void Update() { //Check if the GameObject is being highlighted if (IsHighlighted() == true) { //Output that the GameObject was highlighted, or do something else Debug.Log("Selectable is Highlighted"); } } }