码迷,mamicode.com
首页 > 其他好文 > 详细

判断是否存在UI被触摸

时间:2018-12-10 18:03:20      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:bug   touch   use   pointer   current   android   over   nbsp   down   

        if (Input.GetMouseButtonDown(0) || (Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Began))
        {
#if UNITY_ANDROID || UNITY_IPHONE
            if (EventSystem.current.IsPointerOverGameObject(Input.GetTouch(0).fingerId))
#else
            if (EventSystem.current.IsPointerOverGameObject())
#endif
                Debug.Log("触摸");

            else
                Debug.Log("非触摸");
        }

 

判断是否存在UI被触摸

标签:bug   touch   use   pointer   current   android   over   nbsp   down   

原文地址:https://www.cnblogs.com/llstart-new0201/p/10097065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!