指定方向射线
Ray ray = new Ray(transform.position, -transform.up); RaycastHit hit; if (Physics.Raycast(ray, out hit, Mathf.Infinity)) { // 如果射线与平面碰撞,打印碰撞物体信息 Debug.Log("碰撞对象: " + hit.collider.name); // 在场景视图中绘制射线 Debug.DrawLine(ray.origin, hit.point, Color.red); }
posted on 2019-03-05 14:10 sevenPixels 阅读(174) 评论(0) 编辑 收藏 举报