//--------------------------------------------------------
|
// [Author]: YYL
|
// [ Date ]: 2025年7月29日
|
//--------------------------------------------------------
|
|
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 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]);
|
}
|
else
|
{
|
string[] EquipColorRateListStringArray = tables[3].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
|
EquipColorRateList = new int[EquipColorRateListStringArray.Length];
|
for (int i=0;i<EquipColorRateListStringArray.Length;i++)
|
{
|
int.TryParse(EquipColorRateListStringArray[i],out EquipColorRateList[i]);
|
}
|
}
|
}
|
catch (Exception exception)
|
{
|
Debug.LogError(exception);
|
}
|
}
|
}
|