Xlua开发笔记:网络图片加载

Posted 抚琴一生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xlua开发笔记:网络图片加载相关的知识,希望对你有一定的参考价值。

网络图片加载

较低版本unity加载网络图片,unity5.x及以下

function loadWebImage(url)
	-- 获取imageView对象,imageView对象包含了RawImage组件
    local imageView = GameObject.Find(“ImageView”)
    local texture
    local www
    www = CS.UnityEngine.WWW(url)
    while (true)
    do
        if www.isDone==true then
            texture = www.texture
            imageView:GetComponent("RawImage").texture = texture
            break
        end
    end
end

较高版本unity加载网络图片,unity2017以及之上

function loadWebImage(url)
	-- 获取imageView对象,imageView对象包含了RawImage组件
    local imageView = GameObject.Find("ImageView")
    local texture = CS.UnityEngine.Texture2D(200, 100) 
    local www
    www = CS.UnityEngine.Networking.UnityWebRequest.Get(url)
    www:SendWebRequest()
    while (true)
    do
        if www.isDone==true then
            local result = www.downloadHandler.data
            CS.UnityEngine.ImageConversion.LoadImage(texture, result)
            imageView:GetComponent("RawImage").texture = texture
            break
        end
    end
end

目前使用之上两个办法,后续有更新再更改。

以上是关于Xlua开发笔记:网络图片加载的主要内容,如果未能解决你的问题,请参考以下文章

Xlua开发笔记:网络图片加载

Xlua开发笔记:网络图片加载

Xlua开发笔记:计时器

Xlua开发笔记:计时器

Xlua开发笔记:计时器

Xlua开发笔记:ListScrollView