当前位置:   article > 正文

Unity 进阶 之 AR/VR 3D空间场景中Laser镭射线拖拽UI实现问题的简单整理_unity vr场景加ui

unity vr场景加ui

Unity 进阶 之 AR/VR 3D场景中Laser镭射线拖拽UI实现问题的简单整理

目录

Unity 进阶 之 AR/VR 3D场景中Laser镭射线拖拽UI实现问题的简单整理

一、简单介绍

二、实现原理

三、注意事项

四、效果预览

五、简单实现步骤

常规拖拽

常规拖拽在3D空间拖拽位置跳动问题

解决常规拖拽在3D空间拖拽位置跳动问题的简单方法

六、关键代码


一、简单介绍

Unity中的一些知识点整理。

本节简单介绍在Unity开发中的,在AR/VR 开发中,有时候需要在 3D 空间进行 UI 元素的拖拽功能,或者即把UI元素从一个面板位置拖拽到另一个面板位置,有时候Laser 镭射线拖拽 UI 元素,不小心拖出屏幕的时候,常规的拖拽操作就会出现位置错误,如果您也遇到了类似情况,这里提供一个简单思路方法,提供参考,如果你有新的方式也可以留言,多谢。

二、实现原理

1、常规的 UI 拖拽功能,一般使用 RectTransformUtility.ScreenPointToWorldPointInRectangle 或者 RectTransformUtility.ScreenPointToLocalPointInRectangle 进行位置的计算

  1. 1、RectTransformUtility.ScreenPointToWorldPointInRectangle(this.gameObject.GetComponent<RectTransform>(), eventData.position, eventData.enterEventCamera, out pos);
  2. 2、RectTransformUtility.ScreenPointToLocalPointInRectangle(m_canvsGo.GetComponent<RectTransform>(), eventData.position, eventData.enterEventCamera, out pos);

2、3D 空间场景(AR/VR)中的 UI 拖拽,一般常规功能也可以适用,这里介绍使用 Laser 镭射线交互得到的 eventData.position 转为世界坐标的位置赋值给 UI 使用,来实现 3D 空间场景(AR/VR)中的 UI 拖拽

  1. Vector3 pos = eventData.position;
  2. pos.z = 1080;
  3. this.transform.position = Camera.main.ScreenToWorldPoint(pos) + m_OffsetPos;

三、注意事项

1、拖拽 UI 的 时候,为了避免移动的突兀,在开始移动的时候注意添加一个移动偏差值,在正式移动的时候做位置赋值的时候注意添加上偏移量,其中 pos.z 的数值是, Canvas 位置 z 相对Camera 位置的 z (默认camera 位置 Vector.zero 方向朝前z,Canvas 在 z 向位置)

  1. 1、移动开始时计算出移动偏差值
  2. Vector3 pos = eventData.position;
  3. pos.z = 1080;
  4. m_OffsetPos = this.transform.position - Camera.main.ScreenToWorldPoint(pos);
  5. 2、移动的时候添加上移动的偏差值
  6. Vector3 pos = eventData.position;
  7. pos.z = 1080;
  8. this.transform.position = Camera.main.ScreenToWorldPoint(pos) + m_OffsetPos;

四、效果预览

五、简单实现步骤

常规拖拽

1、打开 Unity 创建场景,在 场景中添加移动的 UI -Image

2、创建脚本,实现 Image 常规的拖拽功能

3、把脚本挂载到场景 Image 上

4、运行场景,效果如图

常规拖拽在3D空间拖拽位置跳动问题

5、切换到 3D 空间场景中,使用Laser镭射线,代替鼠标交互移动 UI Image,效果如图

(Laser镭射线交互当,不小心移动到屏幕外,常规的拖拽移动UI的方法会出现位置跳动)

解决常规拖拽在3D空间拖拽位置跳动问题的简单方法

6、根据常规拖拽出现的位置跳动问题,这里使用把获取到的 eventData.position 转为 世界坐标赋值给移动 UI - Image ,代码如下

7、在  3D 空间场景中,使用Laser镭射线交互,效果如下

六、关键代码

1、Drag.cs

  1. using UnityEngine;
  2. using UnityEngine.EventSystems;
  3. public class Drag : MonoBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler
  4. {
  5. private Vector3 m_OffsetPos;
  6. public void OnBeginDrag(PointerEventData eventData)
  7. {
  8. Debug.Log("OnBeginDrag");
  9. Vector3 pos;
  10. RectTransformUtility.ScreenPointToWorldPointInRectangle(gameObject.GetComponent<RectTransform>(), eventData.position, eventData.enterEventCamera, out pos);
  11. m_OffsetPos = this.gameObject.GetComponent<RectTransform>().position - pos;
  12. }
  13. public void OnEndDrag(PointerEventData eventData)
  14. {
  15. Debug.Log("OnEndDrag");
  16. }
  17. public void OnDrag(PointerEventData eventData)
  18. {
  19. Debug.Log("OnDrag");
  20. Vector3 pos;
  21. RectTransformUtility.ScreenPointToWorldPointInRectangle(this.gameObject.GetComponent<RectTransform>(), eventData.position, eventData.enterEventCamera, out pos);
  22. this.gameObject.GetComponent<RectTransform>().position = pos + m_OffsetPos;
  23. }
  24. }

2、DragItem

  1. using UnityEngine;
  2. using UnityEngine.EventSystems;
  3. public class DragItem : MonoBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler
  4. {
  5. private Vector3 m_OffsetPos;
  6. public void OnBeginDrag(PointerEventData eventData)
  7. {
  8. Debug.Log("OnBeginDrag");
  9. // 方法一:
  10. //Vector3 pos;
  11. //RectTransformUtility.ScreenPointToWorldPointInRectangle(gameObject.GetComponent<RectTransform>(), eventData.position, eventData.enterEventCamera, out pos);
  12. //m_OffsetPos = this.gameObject.GetComponent<RectTransform>().position - pos;
  13. // 方法二:略有问题,暂时不用
  14. //Vector2 pos;
  15. //RectTransformUtility.ScreenPointToLocalPointInRectangle(gameObject.GetComponent<RectTransform>(), eventData.position, eventData.enterEventCamera, out pos);
  16. //Vector3 tmp = this.gameObject.GetComponent<RectTransform>().position;
  17. //m_OffsetPos.x = tmp.x - pos.x;
  18. //m_OffsetPos.y = tmp.y - pos.y;
  19. //m_OffsetPos.z = tmp.z;
  20. // 方法三:
  21. Vector3 pos = eventData.position;
  22. pos.z = 1080; // 根据 Canvas 与 Camera 实际距离赋值
  23. m_OffsetPos = this.transform.position - Camera.main.ScreenToWorldPoint(pos);
  24. }
  25. public void OnEndDrag(PointerEventData eventData)
  26. {
  27. Debug.Log("OnEndDrag");
  28. }
  29. public void OnDrag(PointerEventData eventData)
  30. {
  31. // 方法一:
  32. //Debug.Log("OnDrag eventData.position " + eventData.position.ToString());
  33. //Vector3 pos;
  34. //RectTransformUtility.ScreenPointToWorldPointInRectangle(this.gameObject.GetComponent<RectTransform>(), eventData.position, eventData.enterEventCamera, out pos);
  35. //this.gameObject.GetComponent<RectTransform>().position = pos + m_OffsetPos;
  36. // 方法二:略有问题,暂时不用
  37. //Vector2 pos;
  38. //RectTransformUtility.ScreenPointToLocalPointInRectangle(gameObject.GetComponent<RectTransform>(), eventData.position, eventData.enterEventCamera, out pos);
  39. //this.gameObject.GetComponent<RectTransform>().position = new Vector3(pos.x+m_OffsetPos.x,pos.y+m_OffsetPos.y,m_OffsetPos.z);
  40. // 方法三:
  41. Vector3 pos = eventData.position;
  42. pos.z = 1080;// 根据 Canvas 与 Camera 实际距离赋值
  43. this.transform.position = Camera.main.ScreenToWorldPoint(pos) + m_OffsetPos;
  44. Debug.Log("OnDrag pos " + pos.ToString());
  45. }
  46. }

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

闽ICP备14008679号