GeekCoders
[Note/Unity] Sprite Resource Load 본문
- nice -
Resources.Load<Sprite>(path); // success
- bad -
Resources.Load(path) as Sprite; // fail
or
Texture2D tex = Resources.Load(path) as Texture2D;
Sprite.Create(tex, rc, pivot); // success (instance sprite)
'Note' 카테고리의 다른 글
[오버워치] 호환되는 그래픽 카드를 찾지 못했습니다. (0) | 2016.12.11 |
---|---|
[Note] Visual Studio 모든 참조 찾기 단축키 설정 (0) | 2016.03.20 |
[Note] Sublime Text 3 세팅 (0) | 2016.02.17 |
[Note/Unity] Mac에서 유니티 여러개 실행 (0) | 2015.04.30 |
[Note/Unity] UGUI Text의 Width (0) | 2015.02.05 |