少年修仙传客户端代码仓库
client_Hale
2018-09-12 ee945ee8d3199e91df76e7b320d2c37f5efc599a
Core/GameEngine/Model/Config/FunctionForecastConfig.cs
@@ -1,6 +1,6 @@
//--------------------------------------------------------
//    [Author]:         第二世界
//    [  Date ]:         Tuesday, September 11, 2018
//    [  Date ]:         Wednesday, September 12, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -21,7 +21,10 @@
      public string Icon { get ; private set; } 
      public string Content { get ; private set; } 
      public int DisplayLevel { get ; private set ; }
      public int Display { get ; private set ; }
      public int Display { get ; private set ; }
      public int RedPointLV { get ; private set ; }
      public int RedPointPercentage { get ; private set ; }
      public int FrameLevel { get ; private set ; }
      public override string getKey()
        {
@@ -51,7 +54,13 @@
         
            DisplayLevel=IsNumeric(rawContents[9]) ? int.Parse(rawContents[9]):0; 
         
            Display=IsNumeric(rawContents[10]) ? int.Parse(rawContents[10]):0;
            Display=IsNumeric(rawContents[10]) ? int.Parse(rawContents[10]):0;
            RedPointLV=IsNumeric(rawContents[11]) ? int.Parse(rawContents[11]):0;
            RedPointPercentage=IsNumeric(rawContents[12]) ? int.Parse(rawContents[12]):0;
            FrameLevel=IsNumeric(rawContents[13]) ? int.Parse(rawContents[13]):0;
            }
            catch (Exception ex)
            {