[Unity] 동적으로 자식(child) 오브젝트 찾기
- C#
- 2018. 7. 29. 01:11
foreach (Transform child in ListItems[i].transform)
{
if(child.gameObject.name == "Lock")
{
child.gameObject.SetActive(false);
}
if (child.gameObject.name == "Img")
{
child.GetComponent<UISprite>().spriteName = "바꿀 파일 명";
}
}
유니티에서 특정 오브젝트의 자식 오브젝트를 찾으려면 foreach문을 사용해야 합니다.
'C#' 카테고리의 다른 글
[Unity] BoxCollider Code로 켜고 끄기 (0) | 2018.07.29 |
---|---|
[C#] 유용한 비주얼 스튜디오 단축키 (0) | 2018.07.29 |
[Unity] try catch Exception Log 처리 (0) | 2018.07.29 |
[Unity] NGUI UITexture Code로 변경 (0) | 2018.07.29 |
[Unity] SpriteRenderer Code로 변경 (0) | 2018.07.28 |
이 글을 공유하기