美文网首页
GetComponentsInChildren以及GetComp

GetComponentsInChildren以及GetComp

作者: jojo911 | 来源:发表于2019-08-08 11:58 被阅读0次

GetComponent、GetComponents 只搜索gameobject本身(不包含子节点),并且不管gameobject的本身是否隐藏、组件是否隐藏。GetComponents增加可以搜索gameobject本身包含的多个相同组件。

GetComponentInChildren 可以搜索gameobject本身的组件,并且不管gameobject的本身是否隐藏、组件是否隐藏。但还可以搜索gameobject子节点的组件,如果子节点的gameobject为隐藏状态(组件隐不隐藏无所谓),则搜索不到。
返回搜索到的第一个组件(有多个组件搜索到的情况)。

GetComponentsInChildren 同上,返回搜索到的所有组件,注意:如果子节点gameobject为隐藏状态,那么它下面的所有子节点都搜索不到,不管状态是否隐藏。

GetComponentsInChildren<T>(bool includeInactive) 所有的组件都可以找到,不管什么状态。

==========================================
GetComponentsInParent 这个是向上查找,包含自己,如果自己隐藏状态,是找不到自己的组件,这个和上面的有区别,往上搜索,只有gameobject为显示状态才能找到

GetComponentsInParent<T>(bool includeInactive) 所有的上层组件都可以找到,不管什么状态。

相关文章

网友评论

      本文标题:GetComponentsInChildren以及GetComp

      本文链接:https://www.haomeiwen.com/subject/duotjctx.html