中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[unity3d]下載網上的圖片并保存到本地

發布時間:2020-08-08 12:57:46 來源:網絡 閱讀:732 作者:蓬萊仙羽 欄目:游戲開發

下面介紹一個下載一個網絡資源保存到本地的例子,正好是現在項目中的需求。

using UnityEngine; using System.Collections; using System.IO;  public class Download : MonoBehaviour  { 	public string url = "http://ww3.sinaimg.cn/large/80dfe250jw1dle1r2v4t9j.jpg"; 	public GUIText Test; 	WWW www; 	Color Alpha; 	bool Appear = false; 	int a = 0; 	 	IEnumerator Start()  	{ 		www = new WWW(url); 		//定義www為WWW類型并且等于所下載下來的WWW中內容。 		yield return www; 		//返回所下載的www的值 		renderer.material.shader = Shader.Find("Transparent/Diffuse"); 		renderer.material.mainTexture = www.texture; 		 		Texture2D newTexture = www.texture; 		byte[] pngData = newTexture.EncodeToPNG(); 		try 		{ 			if (Application.platform == RuntimePlatform.Android) 			{ 				File.WriteAllBytes(Application.persistentDataPath + "/ICO.png", pngData); 				 			} 			else 			{ 				//File.WriteAllBytes(Application.dataPath + "/download/ICO.png", pngData); 				File.WriteAllBytes(Application.dataPath + "/ICO.png", pngData); 			} 		} 		catch(IOException e) 		{ 			print(e); 		} 		 		Alpha = renderer.material.color; 		Alpha.a = 0; 		Appear = true; 		renderer.enabled = true; 		renderer.material.color = Alpha; 		//將下載下來的WWW中的圖片賦予到默認物體的材質上進行渲染出來 	} 	 	void Update() 	{ 		Test.text = "DownLoad: " + www.progress; 		if(www.progress == 1 && Appear)	 		{ 			a++; 			Alpha = renderer.material.color; 			Alpha.a += 0.01F; 			renderer.material.color = Alpha; 		} 		 		if(Input.GetKey(KeyCode.Escape))            {                Application.Quit();            }    	} 	 	void OnGUI()         {            if(GUI.Button(new Rect(Screen.width-120,Screen.height-40,120,30),"Click to XIAOWEI!"))             {                Application.OpenURL("https://cache.yisu.com/upload/information/20200217/48/4473.jpg的,后來就多出來了,這就達到預想的效果!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瓮安县| 景东| 安宁市| 岑溪市| 平谷区| 祁阳县| 康乐县| 永吉县| 乌兰察布市| 永安市| 资源县| 珲春市| 柯坪县| 英山县| 台州市| 化隆| 昭苏县| 庆城县| 垫江县| 怀远县| 平陆县| 增城市| 静乐县| 余江县| 精河县| 普兰店市| 东莞市| 资阳市| 社会| 额济纳旗| 厦门市| 来安县| 木兰县| 阳城县| 河津市| 东港市| 军事| 玉龙| 京山县| 鄂州市| 沧州市|