当前位置:   article > 正文

Unity 读取文件 TextAsset读取配置文件_textasset 文件类型

textasset 文件类型

1 支持文件类型

    .txt
    .html
    .htm
    .xml
    .bytes
    .json
    .csv
    .yaml
    .fnt
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

2 寻找文件

    1   //Load texture from disk
        TextAsset bindata= Resources.Load("Texture") as TextAsset;
        Texture2D tex = new Texture2D(1,1);
        tex.LoadImage(bindata.bytes); 
    2   直接在编辑器中赋值
        public TextAsset textFile;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3 配置文件通常分行配置属性

    例如:
        英雄名称,等级,生命,攻击
        hero1,1,1,1
        hero2,1,1,1
    string[] lines = textFile.text.Split("\n"[0]); 可以读出属性
        lines[0] = "英雄名称,等级,生命,攻击"
        lines[1] = "hero1,1,1,1"
        lines[2] = "hero2,1,1,1"

    然后可以读出每条数据的具体属性
        for (int i = 0; i < lines.Length - 2; i++) {
            string[] parts = lines[i + 1].Split(","[0]);
        }
    parts[0] = "hero1" parts[1] = "1" parts[2] = "1" parts[2] = "1" 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/111990
推荐阅读
相关标签
  

闽ICP备14008679号