Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using UnityEngine;
- using System.Collections;
- using UnityEngine.EventSystems;
- public class PointerEnterTest : UIBehaviour, IPointerEnterHandler
- {
- public virtual void OnPointerEnter(PointerEventData eventData)
- {
- Debug.Log(eventData.position);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment