로컬에 있는 이미지 WWW로 로드
public Texture2D LoadTextureByWWW(string path)
{
WWW www = new WWW("file://" + path);
return www.texture;
}
Sprite 만들기
public Sprite CreateSprite(string path)
{
Texture2D tex = LoadTextureByWWW(path);
return Sprite.Create(tex, new Rect(0, 0, tex.width, tex.height), new Vector2(0.5f, 0.5f));
}
Image img;
img.overrideSprite = CreateSprite(imgPath);
'unity tech.' 카테고리의 다른 글
단어로 string 을 split (0) | 2015.09.15 |
---|---|
Texture Type의 Texture와 Sprite 단순 차이 (0) | 2015.09.02 |
유니티 화면에서의 회전 값과 코드 상의 회전 값 (0) | 2015.08.31 |
자식 객체 Destroy 할 때 주의 (0) | 2015.08.31 |
MonoBehavior 객체 사용시 주의 (0) | 2015.08.31 |