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

スクリプト言語

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

Selectable.OnPointerDown

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

パラメーター

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

説明

現在の状態と、Pressed (押され)ステートへの遷移を評価します。

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

public class ExampleClass : MonoBehaviour, IPointerDownHandler// required interface when using the OnPointerDown method. { //Do this when the mouse is clicked over the selectable object this script is attached to. public void OnPointerDown (PointerEventData eventData) { Debug.Log (this.gameObject.name + " Was Clicked."); } }