博客列表 >通过www下载图片

通过www下载图片

龍__遇见彩虹的博客
龍__遇见彩虹的博客原创
2017年12月03日 18:55:52857浏览
// 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;
    }
}


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议