码迷,mamicode.com
首页 > 其他好文 > 详细

[小巩u3d] 关于Raycast对BoxCollider和BoxCollider2d的碰撞监测规则

时间:2017-11-20 20:17:34      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:碰撞   一个   tostring   orm   str   camera   put   sprite   poi   

以下为密经过亲手测的记录,使用UNITY 2017.2.2

对BoxCollider的碰撞监测使用,可以探测到一个3d碰撞体

Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hit;
if (Physics.Raycast(ray, out hit))
{
Debug.Log(hit.transform.name);
}

对2d物理碰撞和的监测使用,可以探测到射线经过的所有box,形成一个烤串,烤串根据z来进行排序,

而且:烤串如果绑定SpriteRenderer,它的Sorting Layer,Order in Layer只对图片的显示层级有效,与BoxCollider2d无关,烤串之和物理坐标Z有关

Debug.Log("----phy----");
RaycastHit2D[] hits = Physics2D.RaycastAll(ray.origin, ray.direction);
foreach(var i in hits)
{
Debug.Log(i.transform.name.ToString());
}

[小巩u3d] 关于Raycast对BoxCollider和BoxCollider2d的碰撞监测规则

标签:碰撞   一个   tostring   orm   str   camera   put   sprite   poi   

原文地址:http://www.cnblogs.com/gonghongmiao/p/7867858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!