91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

UGUI防止穿透和判斷點擊的是否是UI

發布時間:2020-02-29 07:53:18 來源:網絡 閱讀:8341 作者:速度速度撒 欄目:開發技術

年后剛上班,就有不幸的事情發生,項目界面要把NGUI推翻,用UGUI來做,真是蛋都碎了,但是沒辦法,在做的過程中遇UI穿透和點擊的是否是UI,查資料,問朋友,弄出來,跟大家分享:


1.UGUI自帶的防穿透代碼:

 if (EventSystem.current.IsPointerOverGameObject())
                    {
                        return;//為真,則點擊在UI上
                    }
   好像漏了點東西,沒有寫全,上面的只是Unity_Editor 下或者電腦上能運行,移動端是
  if (EventSystem.current.IsPointerOverGameObject(Input.GetTouch(0).fingerId))
                    {
                        return;//為真,則點擊在UI上
                    }    
      總結:
   #if IPHONE || ANDROID
	if (EventSystem.current.IsPointerOverGameObject(Input.GetTouch(0).fingerId))
#else
	if (EventSystem.current.IsPointerOverGameObject())
#endif
		Debug.Log("當前觸摸在UI上");
			
	else 
	       Debug.Log("當前沒有觸摸在UI上");

2.查資料,自己寫了一個判斷

using UnityEngine;
using System.Collections;
using UnityEngine.EventSystems;
using System.Collections.Generic;
using UnityEngine.UI;

public class CheckUGUI : MonoBehaviour {

    public static bool CheckGuiRaycastObjects(EventSystem eventSystem, GraphicRaycaster graphicRayCaster)
    {
        PointerEventData eventData = new PointerEventData(eventSystem);
#if UNITY_EDITOR
        eventData.pressPosition = Input.mousePosition;
        eventData.position = Input.mousePosition;
#endif
#if UNITY_ANDROID || UNITY_IPHONE
        if (Input.touchCount > 0)
        {
            eventData.pressPosition = Input.GetTouch(0).position;
            eventData.position = Input.GetTouch(0).position;
        }
#endif
        List<RaycastResult> list = new List<RaycastResult>();
        graphicRayCaster.Raycast(eventData, list);
        return list.Count > 0;
    }

}

 第二種,我把它寫成了一個類,用到的調用就行

  public EventSystem eventSystem;
  public GraphicRaycaster graphicRaycaster;
  
   if (CheckUGUI.CheckGuiRaycastObjects(eventSystem, graphicRaycaster))
    return;//為真,就點擊的是UI。

 希望大家能用的上。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

濮阳市| 肇州县| 霍林郭勒市| 梓潼县| 景洪市| 平果县| 左权县| 白沙| 电白县| 永昌县| 盐亭县| 安福县| 五台县| 惠来县| 阿拉尔市| 咸丰县| 衡水市| 苍梧县| 辛集市| 长宁区| 永康市| 三门县| 托里县| 通许县| 普格县| 和田市| 永和县| 丽水市| 邵武市| 安新县| 北京市| 承德市| 鄯善县| 普兰店市| 呼图壁县| 象山县| 财经| 当阳市| 阜平县| 临邑县| 吉隆县|