3

我的鼠标在屏幕上的位置很容易找到,就像这样,

            ray = Camera.main.ScreenPointToRay(Input.mousePosition);

现在想象一个立方体。在该立方体上单击的任何位置,都会从单击的边缘绘制一条线,穿过对象,并在另一端停止。方向,垂直或水平,由单击哪一侧、4 侧之一、顶部或底部来确定。

如何确定距离(从网格的一个边缘到另一边缘)和方向(垂直或水平)?

想法?

到目前为止,我唯一的想法是使用碰撞检测并使用 CollisionEnter 作为起点,并以某种方式绘制一条到达网格另一端的线,并使用 CollisionExit 来确定目标(或出口)点。然后进行一些计算以确定 Enter 和 Exit 方法之间的距离。

4

1 回答 1

4

我能想到的唯一方法就是向另一个方向投射光线......

Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hit;
if (Physics.Raycast(ray, out hit))
{
    //offset the ray, keeping it along the XZ plane of the hit
    Vector3 offsetDirection = -hit.normal;
    offsetDirection.y = 0;
    //offset a long way, minimum thickness of the object
    ray.origin = hit.point  + offsetDirection * 100;
    //point the ray back at the first hit point
    ray.direction = (hit.point - ray.origin).normalized;
    //raycast all, because there might be other objects in the way
    RaycastHit[] hits = Physics.RaycastAll(ray);
    foreach (RaycastHit h in hits)
    {
        if (h.collider == hit.collider)
        {
            h.point; //this is the point you're interested in
        }
    }
}

这会将光线偏移到一个新位置,以便它保留与原始命中相同的 XZ 坐标,因此生成的端点形成一条与世界/场景 Y 轴垂直的线。为此,我们使用相机的Forward方向(因为我们想要一个远离视点的点)。如果我们想为垂直于碰撞表面(平行于表面法线)的线获取一个点,我们可以使用创建偏移来hit.normal代替。

您可能希望将 layermask 或 maxdist 参数放入两个 raycast 方法中(因此它检查的东西更少并且更快),但这取决于您。

原始代码:找到通过对象投射的“单一”射线的两个端点。

Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hit;
if (Physics.Raycast(ray, out hit))
{
    //offset the ray along its own direction by A LOT
    //at a minimum, this would be the maximum thickness of any object we care about,
    //PLUS the distance away from the camera that it is
    ray.origin += ray.direction * 100;
    //reverse the direction of the ray so it points towards the camera
    ray.direction *= -1;
    //raycast all, because there might be other objects in the way
    RaycastHit[] hits = Physics.RaycastAll(ray);
    foreach(RaycastHit h in hits)
    {
        if(h.collider == hit.collider)
        {
            h.point; //this is the point you're interested in
        }
    }
}
于 2017-06-21T20:40:29.020 回答