unity屏幕坐标转世界坐标

时间:2021-06-25 16:37:42   收藏:0   阅读:0

“Orthographic”(垂直观察角度):

与canvas到摄像机的距离无关,z值无影响,直接用x,y就能算出

技术图片

 

“Perspective”(放射观察角度):

与canvas到摄像机的距离(canvas中的planedistance)有关,z值传planedistance。

在工作中遇到一种情况:canvas有角度,这个方法就用不了了,想出一种新方法:

ScreenPointToRay会返回一条从像机到你给的点的射线,再算出canvas的法向量,再求出法向量和射线的夹角,就可以得出摄像机到你给的点的距离dis,你要的世界坐标:ray.GetPoint(dis)

代码:

Ray ray = camera.Main.ScreenPointToRay(new Vector3(eventData.position.x, eventData.position.y, 0));
Vector3 ray2 = -Vector3.Cross(corners[0] - corners[2],corners[1] - corners[3]);//corners是canvas的四个角
float rad = Vector3.Angle(ray.direction,ray2);
float dis = TheaterBattleTeamSelectionUIController.Instance.canvasDistance / Mathf.Cos(rad * Mathf.Deg2Rad);
newPos = ray.GetPoint(dis);

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!