본문 바로가기
유니티 공부/Unity

Unity - 부모 오브젝트 할당하기(Object Instantiate())

by 코딩하는 돼징 2023. 5. 22.
반응형

Instantiate()을 사용해서 부모 오브젝트 할당하기

public static Object Instantiate(Object original, Transform parent);

매개변수

original : 복제할 오브젝트

parent : 새로운 오브젝트를 배치할 부모 오브젝트의 trasnform


Code 예시

Parent 밑에 랜덤으로 된 색깔의 큐브 child 10개 할달하기

public class Parent : MonoBehaviour
{
    public GameObject child;
    public Transform parent;
    void Start()
    {
        for (int i = 0; i < 10; i++)
        {
            Instantiate(child, parent);
        }
    }
}

결과

반응형

댓글