少年修仙传客户端代码仓库
client_linchunjie
2018-10-11 9473e46f8c7eb690eb8a3df4a8b53b5e527c098b
Core/GameEngine/Model/Config/TalentConfig.cs
@@ -1,6 +1,6 @@
//--------------------------------------------------------
//    [Author]:         第二世界
//    [  Date ]:         Wednesday, September 26, 2018
//    [  Date ]:         Thursday, October 11, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -13,7 +13,8 @@
      public int skillId { get ; private set ; }
      public int type { get ; private set ; }
      public int series { get ; private set ; }
      public int series { get ; private set ; }
      public int order { get ; private set ; }
      public override string getKey()
        {
@@ -27,7 +28,9 @@
         
            type=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0; 
         
            series=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
            series=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
            order=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
            }
            catch (Exception ex)
            {