得到
Get 從 Web 伺服器獲取資料。和 new WWW("https://urlexample.com");
有一個網址,但沒有第二個引數正在做一個 Get 。
即
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour
{
public string url = "http://google.com";
IEnumerator Start()
{
WWW www = new WWW(url); // One get.
yield return www;
Debug.Log(www.text); // The data of the url.
}
}