码迷,mamicode.com
首页 > 其他好文 > 详细

UGUI更换图片的三种方法

时间:2018-11-23 20:58:24      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:yield   ror   data-   更换   toolbar   res   分享图片   source   技术   

//方法一: Image/pic 在 Assets/Resources/目录下 
Image _myImage; 
void Start()
{
    _myImage.sprite = Resources.Load("Image/pic", typeof(Sprite)) as Sprite;
}

//方法二:mySprite 为外部指定的图片资源
Image _myImage; 
Sprite _ISprite; void Start()
{
  _myImage.sprite = ISprite
}
//方法三 
Image myImage; void Start () { StartCoroutine(GetImage()); }
IEnumerator GetImage()
{

string url = "http://www.5dbb.com/images/logo.gif";
WWW www = new WWW(url);
yield return www;

if (string.IsNullOrEmpty(www.error))
{
Texture2D tex = www.texture;
Sprite temp = Sprite.Create(tex, new Rect(0, 0, tex.width, tex.height), new Vector2(0, 0)); myImage.sprite = temp;
}
}
技术分享图片

 

UGUI更换图片的三种方法

标签:yield   ror   data-   更换   toolbar   res   分享图片   source   技术   

原文地址:https://www.cnblogs.com/hpu001/p/10009030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!