获取子物体数量---Transform.childCount
Posted Joel >>>TaoHu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取子物体数量---Transform.childCount相关的知识,希望对你有一定的参考价值。
如何判断一个物体下是否有子物体?getchild(0)!=null?显然不可取
那去获取拿到子物体数量?transform.GetChildCount();可以解决
但在新版本中已被弃用,可用transform.childCount来直接获取子物体数量。
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { print(transform.childCount); } }
以上是关于获取子物体数量---Transform.childCount的主要内容,如果未能解决你的问题,请参考以下文章