using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using DG.Tweening;
using UnityEngine.EventSystems;
public class PlayerController : MonoBehaviour
{
private void Update()
{
if (EventSystem.current.IsPointerOverGameObject()) return;
if (Input.GetMouseButtonDown(0))
{
Debug.Log("点击屏幕");
}
}
}
这个方法会将点击Text的时候也会当作点击UI,将raycast target 取消勾选可以避免。! G8 e: B1 h: G) I
7 y' [( p: s6 v; E3 K, C9 ~: O" j
unity点击UI跟场景不冲突的方法:* ]7 y0 ~" C. c L- r' W
在射线检测后加!EventSystem.current.IsPointerOverGameObject()即可,需要引入命名空间using UnityEngine.EventSystems; 4 M/ x2 S* `! v* L ; c3 `4 z, u' i" S0 \" ] 5 u; c* [0 c! g