当前位置:   article > 正文

unity射线点击移动_unity 射线点击

unity 射线点击

方案:利用射线获取坐标,使用navmash导航功能进行寻路

首先声明:using UnityEngine.AI;

渲染设置好地图:(当然关于navmash就不在这里做赘述)

 代码如下:

  1. public Ray ray;//声明射线
  2. public NavMeshAgent nav;//获取NavMeshAgent
  3. // Start is called before the first frame update
  4. void Start()
  5. {
  6. nav=this.GetComponent<NavMeshAgent>();//获取NavMeshAgent赋值
  7. //由于 GetComponent 函数的执行速度相当慢,因此该脚本在 Start 函数期间将其结果存储在变量中,而不是在 Update 中重复调用它。
  8. }
  9. // Update is called once per frame
  10. void Update()
  11. {
  12. if (Input.GetKeyDown(KeyCode.Mouse0)) //如果鼠标左键点击
  13. {
  14. ray=Camera.main.ScreenPointToRay(Input.mousePosition);//射线从鼠标在屏幕坐标中发射
  15. RaycastHit hit;
  16. //存储射线对象内的投射命中点的信息到RaycastHit
  17. if (Physics.Raycast(ray,out hit))
  18. {
  19. Vector3 points=hit.point;
  20. transform.LookAt(points);
  21. //让导航对像在移动时始终面向导航坐标位置
  22. nav .SetDestination(points);
  23. //利用导航到指定坐标点位置
  24. }
  25. }
  26. }

最后如果你的导航对象身上携带刚体以便与地图中角色或物品进行物理交互,或者发现模型移动发生错误,请务必添加Rigidbody并锁定x、y、z轴

 如果不锁定会导致在碰撞时,角色本身的x、y、z发生改变,进而影响导航,从而导致bug出现

具体情况请自行测试!

------------------------------------------------------2D射线点击---------------------------------------------------------

1、首先你的目标上要有“2D的collider”对象,这样才能被检测到

2、代码如下:

  1. Ray2D ray;
  2. void Update()
  3. {
  4. ray = new Ray2D(Input.mousePosition,Vector2.right);
  5. RaycastHit2D hit= Physics2D.Raycast(ray.origin, ray.direction);
  6. if (hit.collider!=null)//判断碰撞体是否存在
  7. {
  8. Debug.Log("1");
  9. if (hit.transform.tag=="Player")//依照tag查找对象
  10. {
  11. Destroy(hit.transform.gameObject);//删除目标对象
  12. }
  13. }
  14. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/101033?site
推荐阅读
相关标签
  

闽ICP备14008679号