- Canvas에서 겹치는 Image들의 우선순위는 Hierarchy의 순서



- 만약 UI가 클릭되지 않을 경우 가장 기본적인 의심으로는 Event System을 지우지 않았는지 확인하기

 

 

GameObject Balloon;

 

-

 

Balloon = (GameObject)Instantiate(BalloonPrefab, new Vector3(...), Quaternion.identity);

Balloon.transform.parent = gameObject.transform;

 

 

자식으로 붙일 때 transform을 이용해서 붙임

 

+)

마찬가지로 생성 할 때가 아니더라도

ObjectA.transform.parent = ObjectB.transform; 하면 자식으로 변경되어 Hierarchy 창에서 확인할 수 있다.

+ Recent posts