当前位置:   article > 正文

Unity关于本地加载图片涉及webrequest或者byte_unity webrequest请求图片

unity webrequest请求图片

Unity关于本地加载图片的有2种,一种使用webrequest发送请求发送数据将得到的数据转换成Texture2d,最后转换成sprite,第二种方法是使用读取文本文件方法
将图片当成文件来读取,然后转换成,下边附上我的代码

[RequireComponent(typeof(UnityEngine.UI.Image))]
public class LoadMyUI : MonoBehaviour
{
   

    public string path = " ";

    private string Currentpath = " ";

    private Image thisImage;

    public string MySaveTextName = " ";

    private string SaveImageTxtName = " ";

    private TagIsDepress Tag;


    private bool LoadingEnd = false;
    // Start is called before the first frame update
    void Start()
    {
   
        thisImage = this.GetComponent<Image>();
        //thisImage.gameObject.SetActive(false);
        Currentpath = Path.Combine(Application.persistentDataPath, path);
        Debug.Log($"PathpersistentDataPathYouSEE:
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/103557
推荐阅读
相关标签
  

闽ICP备14008679号