子オブジェクトの数を取得する方法を忘れてたので自分用にメモ。
[ 取得方法 ]
下記は下記のスクリプトがアタッチされたオブジェクトの子オブジェクトの数をコンソールに出力するスクリプトです。
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ScriptTest : MonoBehaviour
{
void Start()
{
int IntTest = this.gameObject.transform.childCount;
Debug.Log(IntTest);
}
}