luoyikun

导航

UGUI判断鼠标或者手指是否点击在UI上

#if UNITY_ANDROID && !UNITY_EDITOR
#define ANDROID
#endif


#if UNITY_IPHONE && !UNITY_EDITOR
#define IPHONE
#endif



using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using UnityEngine.EventSystems;
public class NewBehaviourScript : MonoBehaviour {

    // Use this for initialization
    void Start () {

    }


    void Update()
    {
        if (Input.GetMouseButtonDown(0)||(Input.touchCount >0 && Input.GetTouch(0).phase == TouchPhase.Began))
        {
#if IPHONE || ANDROID
            if (EventSystem.current.IsPointerOverGameObject(Input.GetTouch(0).fingerId))
#else
            if (EventSystem.current.IsPointerOverGameObject())
#endif
                Debug.Log("当前触摸在UI上");

            else 
                Debug.Log("当前没有触摸在UI上");
        }
    }
}

移动端与pc端的判断函数不同

posted on 2018-08-21 20:23  luoyikun  阅读(27)  评论(0)    收藏  举报  来源