首页 > 编程语言 > 详细

unity屏幕坐标转世界坐标

时间:2021-06-24 23:00:35      阅读:23      评论: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);

 

unity屏幕坐标转世界坐标

原文:https://www.cnblogs.com/mcyushao/p/14928300.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!