Version: 2017.1
public int childCount ;

설명

The number of children the Transform has.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(transform.childCount); } }