Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseThe GameObject that received the OnPointerDown
.
pointerPress returns the GameObject that has been pressed. It is only valid when the press is released.
using UnityEngine; using System.Collections; using UnityEngine.EventSystems;
// pointerPress example. // Note that an image was added to a Canvas->Image. This Image has the // following script added. OnPointerUp is called when the texture is // clicked and released.
public class ExampleScript : MonoBehaviour, IPointerUpHandler { // The mouse was released from the GameObject. public void OnPointerUp(PointerEventData eventData) { Debug.Log("Up: " + eventData.pointerPress); } }