Transform.childCount 子物体数

var childCount : int

Description描述

The number of children the Transform has.

变换的子物体数量。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
    public void Awake() {
   		print(transform.childCount);
    }
}
// print the number of child objects
//打印物体的子物体数
print(transform.childCount);
最后修改:2010年12月19日 Sunday 0:38

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。