// Get the latest webcam shot from outside "Friday's" in Times Square using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { public string url = "http://images.earthcam.com/ec_metros/ourcams/fridays.jpg"; IEnumerator Start() { //开始下载 WWW www = new WWW(url); //等待下载完成 yield return www; //将下载的图片进行渲染 Renderer renderer = GetComponent<Renderer>(); renderer.material.mainTexture = www.texture; } }