1.屏幕坐标
屏幕坐标不是你电脑屏幕的坐标,是你game界面的坐标(如图1所示)
左下角是(0,0),右上角根据你分辨率来,比如这个是1920*1080,那么右上角就是(1920,1080)
Input.mousePosition得到的就是屏幕坐标,这也很好理解,毕竟鼠标在屏幕上。
2.视口坐标
用于描述相机视图中的坐标系统。视口坐标系与屏幕分辨率无关,其坐标基准是相机视口,其中(0,0)代表屏幕左下角,(1,1)代表屏幕右上角,(0.5,0.5)代表屏幕中心
3.世界坐标
- 坐标基准:Unity 世界的全局坐标,所有物体的
transform.position
都是相对于世界原点(0, 0, 0)
计算的。 - 适用于:3D 物体、UI 物体(如果
Canvas
处于World Space
模式)。
4.本地坐标
- 坐标基准:相对于父对象的坐标,
transform.localPosition
记录的是该物体相对于父对象的位置,而非世界坐标。 - 适用于:层级结构中的子物体、
RectTransform
的anchoredPosition
。
5.转变转换
using UnityEngine;
public class PositionConvert
{
/// <summary>
/// 世界坐标转换为屏幕坐标
/// </summary>
/// <param name="worldPoint">屏幕坐标</param>
/// <returns></returns>
public static Vector2 WorldPointToScreenPoint(Vector3 worldPoint)
{
// Camera.main 世界摄像机
Vector2 screenPoint = Camera.main.WorldToScreenPoint(worldPoint);
return screenPoint;
}
/// <summary>
/// 屏幕坐标转换为世界坐标
/// </summary>
/// <param name="screenPoint">屏幕坐标</param>
/// <param name="planeZ">距离摄像机 Z 平面的距离</param>
/// <returns></returns>
public static Vector3 ScreenPointToWorldPoint(Vector2 screenPoint, float planeZ)
{
// Camera.main 世界摄像机
Vector3 position = new Vector3(screenPoint.x, screenPoint.y, planeZ);
Vector3 worldPoint = Camera.main.ScreenToWorldPoint(position);
return worldPoint;
}
/
// RectTransformUtility.WorldToScreenPoint
// RectTransformUtility.ScreenPointToWorldPointInRectangle
// RectTransformUtility.ScreenPointToLocalPointInRectangle
// 上面三个坐标转换的方法使用 Camera 的地方
// 当 Canvas renderMode 为 RenderMode.ScreenSpaceCamera、RenderMode.WorldSpace 时 传递参数 canvas.worldCamera
// 当 Canvas renderMode 为 RenderMode.ScreenSpaceOverlay 时 传递参数 null
// UI 坐标转换为屏幕坐标
public static Vector2 UIPointToScreenPoint(Vector3 worldPoint)
{
// RectTransform:target
// worldPoint = target.position;
Camera uiCamera = UIManager.GetInstance().UICamera;
Vector2 screenPoint = RectTransformUtility.WorldToScreenPoint(uiCamera, worldPoint);
return screenPoint;
}
// 屏幕坐标转换为 UGUI 坐标
public static Vector3 ScreenPointToUIPoint(RectTransform rt, Vector2 screenPoint)
{
Vector3 globalMousePos;
//UI屏幕坐标转换为世界坐标
Camera uiCamera = UIManager.GetInstance().UICamera;
// 当 Canvas renderMode 为 RenderMode.ScreenSpaceCamera、RenderMode.WorldSpace 时 uiCamera 不能为空
// 当 Canvas renderMode 为 RenderMode.ScreenSpaceOverlay 时 uiCamera 可以为空
RectTransformUtility.ScreenPointToWorldPointInRectangle(rt, screenPoint, uiCamera, out globalMousePos);
// 转换后的 globalMousePos 使用下面方法赋值
// target 为需要使用的 UI RectTransform
// rt 可以是 target.GetComponent<RectTransform>(), 也可以是 target.parent.GetComponent<RectTransform>()
// target.transform.position = globalMousePos;
return globalMousePos;
}
// 屏幕坐标转换为 UGUI RectTransform 的 anchoredPosition
public static Vector2 ScreenPointToUILocalPoint(RectTransform parentRT, Vector2 screenPoint)
{
Vector2 localPos;
Camera uiCamera = UIManager.GetInstance().UICamera;
RectTransformUtility.ScreenPointToLocalPointInRectangle(parentRT, screenPoint, uiCamera, out localPos);
// 转换后的 localPos 使用下面方法赋值
// target 为需要使用的 UI RectTransform
// parentRT 是 target.parent.GetComponent<RectTransform>()
// 最后赋值 target.anchoredPosition = localPos;
return localPos;
}
}