UI被穿透的解决方法

亲测有效

public class DialogCtr:MonoBehaviour
{
//默认为true,可发射射线
private bool shoot=true;
Transform target;

void GetTarget()
{
 if ( Input.GetMouseButtonDown(0))
			{
                //点击到UI或者点击到UI以外的范围,但UI处于显示状态,不执行射线
                if (EventSystem.current.IsPointerOverGameObject()||GameObject.Find("2_Tip").transform.Find("2_Tip_1").gameObject.activeInHierarchy)
                {
                    //检测到UI,不执行射线
                    shoot = false;
                }
                else
                {
                    //没有检测到UI,执行射线
                    shoot = true;
                }

                //是否发射射线
                if (shoot)
                {
                    RaycastHit hitInfo;
                    //发射射线
                    if (Physics.Raycast(myCamera.ScreenPointToRay(Input.mousePosition), out hitInfo))
                    {
                        //物体可高亮,移动,掉落
                        if (hitInfo.transform.GetComponent<Highlighter>() != null && hitInfo.transform.GetComponent<Rigidbody>() != null)
                        {
                            target = hitInfo.transform;
                            //不受重力影响
                            target.GetComponent<Rigidbody>().isKinematic = true;
                        }
                    }
                    else
                    {
                        target = null;
                    }
                }      
            }
  }
  }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值