(Unity)親子関係の「複数」の「子」の情報を取得する

(検証テスト)

  • スペースキーを押すと、「子」の色が赤くなる。


(スクリプト)

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ChildrenInfo : MonoBehaviour
{
    void Update()
    {
        if(Input.GetKeyDown(KeyCode.Space))
        {
            foreach(Transform child in transform)
            {
                child.GetComponent<MeshRenderer>().material.color = Color.red;
            }
        }
    }
}

(実行結果)