(検証テスト)
- スペースキーを押すと、「子」の色が赤くなる。
(スクリプト)
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;
}
}
}
}
(実行結果)