Unity:在UI上和物体交互

本文介绍了一个在Unity中利用Camera和RectTransform组件,通过计算点击点在UI上的比例,实现鼠标点击事件在标准屏幕上的精确映射,以实现更自然的交互效果的技术实现。
摘要由CSDN通过智能技术生成

实现思路
通过计算点击点在ui上的比例,来和标准屏幕上的点建立映射关系,达到交互效果

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

public class Machine_RawImageToMouseClick : MonoBehaviour,IPointerDownHandler, IPointerEnterHandler,IPointerExitHandler
{
    [Tooltip("用于发射射线的相机")]
    public Camera targetCamera;
    public bool isStay;

    public void OnPointerDown(PointerEventData eventData)
    {
        if (Input.GetMouseButtonDown(0)&&isStay)
        {
            Vector3 mouseLocalPos = transform.InverseTransformPoint(Input.mousePosition);
            Vector3 rate = new Vector3(mouseLocalPos.x/GetComponent<RectTransform>().sizeDelta.x , mouseLocalPos.y / GetComponent<RectTransform>().sizeDelta.y, 0);
            Ray ray = targetCamera.ScreenPointToRay(new Vector3(rate.x * 1920, rate.y * 1080,0));
            RaycastHit hit;
            if (Physics.Raycast(ray, out hit))
            {

            }
        }
    }

    public void OnPointerEnter(PointerEventData eventData)
    {
        isStay = true;
    }

    public void OnPointerExit(PointerEventData eventData)
    {
        isStay = false;
    }

    // Update is called once per frame
    void Update()
    {
        if (!isStay||Input.GetMouseButton(0)|| Input.GetMouseButton(1)|| Input.GetMouseButton(2))
        {
            return;
        }
        Vector3 mouseLocalPos = transform.InverseTransformPoint(Input.mousePosition);
        Vector3 rate = new Vector3(mouseLocalPos.x / GetComponent<RectTransform>().sizeDelta.x, mouseLocalPos.y / GetComponent<RectTransform>().sizeDelta.y, 0);
        Ray ray = targetCamera.ScreenPointToRay(new Vector3(rate.x *1920, rate.y * 1080, 0));
        RaycastHit hit;
        if (Physics.Raycast(ray, out hit))
        {

        }
        else
        {

        }
    }
} 
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值