当前位置:   article > 正文

Unity动态加载本地图片_unity动态加载图片

unity动态加载图片

Unity运行时动态加载本地图片

一、Unity运行时加载本地文件夹下所有图片的方法,用于在使用图片前加载完成

using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

/// <summary>
/// IO加载本地图片 txt文档
/// </summary>
public class ComPanyUILoadController : MonoBehaviour {
    
    public static ComPanyUILoadController instance { get; private set; }

    private string jsonPath = @"E:\文件夹名\json存放文件夹\json名.json"; //json文件路径
    private string imagePath = @"E:\文件夹名\文件夹名\"; //图片文件路径

    public List<CompanyData> datas;  //数据存储列表
    public CompanyData currentDatas; //Json解析格式 

    private void Awake()
    {
        instance = this;
        //加载各个文件
        datas = JsonToObject.JsonToObject_ByJsonFile<CompanyData>(jsonPath); //json解析
    }

    #region  图片加载
    /// <summary>
    /// 获取文件根路径
    /// </summary>
    /// <returns></returns>
    private string GetPath()
    {
        string path ="";
        foreach (CompanyData i in datas)
        {
            if (GameManager.instacne.currentCompany.Equals(i.ID))  //加载编号
            {
                path = imagePath + i.Name+@"\";
            }
        }
        return path;  // E:\文件夹名\文件夹名\文件夹名\
    }

    /// &
  • 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
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/103568
推荐阅读
相关标签
  

闽ICP备14008679号