2013年9月8日 星期日

Unity3D 教學 ﹥25 Unity 教學

http://www.cg.com.tw/Unity/htm/Unity_025.asp

MovieTexture
WWW 類別
WWW 類別提供簡易的網頁存取功能,是一個可以透過網路取得內容(例如影像)的公用模組。

You start a download in the background by calling WWW(url) which returns a new WWW object.
You can inspect the isDone property to see if the download has completed or yield the download object to automatically wait until it is (without blocking the rest of the game).
您可能需要從網站伺服器取得一些資料並與遊戲的內容整合,例如玩家的最高分記錄、使用從伺服器下載的影像來建立物件的材質紋理。
WWW 類別可用於對伺服器傳送 GET 與 POST 請求,預設的情況是使用 GET,若需要使用 POST 則需要提供 postData 參數。

提示: iPhone 可支援 http:// 、 https:// 、 file:// 、 ftp:// 通訊協定( ftp:// 僅限匿名下載)。
Note: The security sandbox present in web-player builds prevents you from accessing content not hosted the server where the webplayer is hosted.
var url = "http://www.cg.com.tw/gameimg/test.jpg";
function Start () {
// Start a download of the given URL
var www : WWW = new WWW (url);
// Wait for download to complete
yield www;
// assign texture
renderer.material.mainTexture = www.texture;
}