[Unity] NGUI UITexture Code로 변경
- C#
- 2018. 7. 29. 00:20
* 방법 1
img.mainTexture = Resources.Load("img/imageName", typeof(Texture2D)) as Texture2D;
* 방법 2
private iEnumerator loadImg()
{
Texture2D texture = null;
string PATH = "Texture/image.jpg";
texture = Resources.Load(PATH,typeof(Texture2D)) as Texture2D;
img.mainTexture = texture;
}
'C#' 카테고리의 다른 글
[Unity] BoxCollider Code로 켜고 끄기 (0) | 2018.07.29 |
---|---|
[C#] 유용한 비주얼 스튜디오 단축키 (0) | 2018.07.29 |
[Unity] try catch Exception Log 처리 (0) | 2018.07.29 |
[Unity] 동적으로 자식(child) 오브젝트 찾기 (0) | 2018.07.29 |
[Unity] SpriteRenderer Code로 변경 (0) | 2018.07.28 |
이 글을 공유하기