From ee945ee8d3199e91df76e7b320d2c37f5efc599a Mon Sep 17 00:00:00 2001
From: client_Hale <339726288@qq.com>
Date: 星期三, 12 九月 2018 17:10:57 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
Core/GameEngine/Model/Config/FunctionForecastConfig.cs | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/Core/GameEngine/Model/Config/FunctionForecastConfig.cs b/Core/GameEngine/Model/Config/FunctionForecastConfig.cs
index ba97f64..99ab8de 100644
--- a/Core/GameEngine/Model/Config/FunctionForecastConfig.cs
+++ b/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)
{
--
Gitblit v1.8.0