博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
利用WWW类获取图片并且在unityUGUI的Image中显示
阅读量:5119 次
发布时间:2019-06-13

本文共 638 字,大约阅读时间需要 2 分钟。

因为最进遇到过这样问题。怎么动态来修改UGUI中的image呢,怎么来获取这个组件呢 。

using UnityEngine;using System.Collections;using UnityEngine.UI;public class GetSprite : MonoBehaviour {	//利用WWW类获取图片并且在unityUGUI的Image中显示	public Image image;	void Start () {		string path = "http://pic.nipic.com/2007-11-09/2007119122519868_2.jpg";		StartCoroutine(LoadImage(path));	}	IEnumerator LoadImage(string path)	{		WWW www = new WWW(path);		yield return www;		Texture2D texture = www.texture;		Sprite sprites = Sprite.Create(texture,new Rect(0,0,texture.width,texture.height),new Vector2(0.5f,0.5f));		image.sprite = sprites;	}}

 运行结果:

 

 

转载于:https://www.cnblogs.com/unitySPK/p/5050478.html

你可能感兴趣的文章
Linux上架设boost的安装及配置过程
查看>>
[转载]加密算法库Crypto——nodejs中间件系列
查看>>
zoj 2286 Sum of Divisors
查看>>
OO5~7次作业总结
查看>>
如何判断主机是大端还是小端(字节序)
查看>>
Centos7 日志查看工具
查看>>
使用Xshell密钥认证机制远程登录Linux
查看>>
OpenCV之响应鼠标(三):响应鼠标信息
查看>>
Android 画图之 Matrix(一)
查看>>
List<T>列表通用过滤模块设计
查看>>
【模板】最小生成树
查看>>
设计模式之结构型模式
查看>>
poj2569
查看>>
使用pygal_maps_world.i18n中数据画各大洲地图
查看>>
sql server必知多种日期函数时间格式转换
查看>>
jQuery EasyUI 的下拉选择combobox后台动态赋值
查看>>
timeline时间轴进度“群英荟萃”
查看>>
python if else elif statement
查看>>
网络编程
查看>>
文本隐藏(图片代替文字)
查看>>