首页 > 学院 > 开发设计 > 正文

Unty3D动态加载图片

2019-11-14 13:47:13
字体:
来源:转载
供稿:网友

试验动态加载图片,代码如下:

using UnityEngine;using System.Collections;public class DynamicLoad : MonoBehaviour{    Texture2D txt;    IEnumerator Start()    {        string path = application.dataPath + "/Title000.png";        WWW www = new WWW("file://" + path);        yield return www;                txt = new Texture2D(200,200);        txt = www.texture; // 方式一        //www.LoadImageIntoTexture(txt); // 方式二    }    void OnGUI()    {        if (txt != null)        {            GUI.DrawTexture(new Rect(0, 0, 200, 200), txt);        }    }}

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表