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

Vuforia点击屏幕自动对焦,过滤UGUI的按钮

时间:2015-01-19 10:48:19      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

        //点击屏幕自对对焦
#if UNITY_EDITOR
        if(!EventSystem.current.IsPointerOverGameObject()&&Input.GetMouseButtonUp(0))
#elif UNITY_ANDROID || UNITY_IPHONE
        if (!EventSystem.current.IsPointerOverGameObject()&& Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Began)
#endif
        {
            Vuforia.CameraDevice.Instance.SetFocusMode(Vuforia.CameraDevice.FocusMode.FOCUS_MODE_CONTINUOUSAUTO);
        }
EventSystem.current.IsPointerOverGameObject()为判断是否点击在当前UI上

Vuforia点击屏幕自动对焦,过滤UGUI的按钮

标签:

原文地址:http://www.cnblogs.com/townsend/p/4233130.html

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