이번엔 자식 오브젝트를 가져오는 방법 두 가지를 알아봅시다 먼저 세팅은 아래와 같습니다하이어라키에 더미 오브젝트를 나열했고 스크립트 FindMyChild를 생성해 부모 객체를 연결해주었습니다 1. 부모 객체에서부터 순서대로 가져오는 방법using UnityEngine; public class FindMyChild : MonoBehaviour { [SerializeField] Transform targetParent; void Start() { //Use Child Component Debug.Log("TargetParent Child Length : " + targetParent.childCount); for (int i = 0; i < targetParent.childCount; i++) { Debug..