yyl
2025-07-29 b0a5d4688f1af73b5ad03ccc2df11c9aac1523a9
Main/Config/Configs/TreeLVConfig.cs
@@ -1,40 +1,38 @@
//--------------------------------------------------------
//    [Author]:           YYL
//    [  Date ]:           2025年7月7日
//--------------------------------------------------------
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System;
using UnityEngine;
using LitJson;
public partial class TreeLVConfig : ConfigBase<int, TreeLVConfig>
{
    public int TreeLV;
   public int LVUPNeedMoney;
   public int LVUPNeedTime;
   public int[] EquipColorRateList;
   public string ExAwardItemRateList;
    public override int LoadKey(string _key)
    {
        int key = GetKey(_key);
        return key;
    }
    public override void LoadConfig(string input)
    {
        try {
        string[] tables = input.Split('\t');
        int.TryParse(tables[0],out TreeLV);
         int.TryParse(tables[1],out LVUPNeedMoney);
         int.TryParse(tables[2],out LVUPNeedTime);
//--------------------------------------------------------
//    [Author]:           YYL
//    [  Date ]:           2025年7月26日
//--------------------------------------------------------
using System.Collections.Generic;
using System;
using UnityEngine;
using LitJson;
public partial class TreeLVConfig : ConfigBase<int, TreeLVConfig>
{
    public int TreeLV;
   public int LVUPNeedMoney;
   public int LVUPNeedTime;
   public int[] EquipColorRateList;
   public string ExAwardItemRateList;
    public override int LoadKey(string _key)
    {
        int key = GetKey(_key);
        return key;
    }
    public override void LoadConfig(string input)
    {
        try {
        string[] tables = input.Split('\t');
        int.TryParse(tables[0],out TreeLV);
         int.TryParse(tables[1],out LVUPNeedMoney);
         int.TryParse(tables[2],out LVUPNeedTime);
         if (tables[3].Contains("["))
         {
            EquipColorRateList = JsonMapper.ToObject<int[]>(tables[3]);
@@ -47,13 +45,13 @@
            {
                int.TryParse(EquipColorRateListStringArray[i],out EquipColorRateList[i]);
            }
         }
         ExAwardItemRateList = tables[4];
        }
        catch (Exception exception)
        {
            Debug.LogError(exception);
        }
    }
}
         }
         ExAwardItemRateList = tables[4];
        }
        catch (Exception exception)
        {
            Debug.LogError(exception);
        }
    }
}