Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Selectable.OnPointerExit

マニュアルに切り替える
public void OnPointerExit(EventSystems.PointerEventData eventData);

パラメーター

eventData 通常、EventSystem によって送信されるイベントデータ(EventData)。

説明

現在のステートと通常ステートへの遷移を評価します

using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using UnityEngine.EventSystems;// Required when using Event data.

public class ExampleClass : MonoBehaviour, IPointerExitHandler// required interface when using the OnPointerExit method. { //Do this when the cursor exits the rect area of this selectable UI object. public void OnPointerExit (PointerEventData eventData) { Debug.Log ("The cursor exited the selectable UI element."); } }