From d3d0662762f352caae67198e5e2a1e4e5d856b5c Mon Sep 17 00:00:00 2001
From: client_Zxw <826696702@qq.com>
Date: 星期五, 04 一月 2019 17:28:11 +0800
Subject: [PATCH] 5693 【1.4.100】坐骑丹使用跳转选中优化
---
Core/GameEngine/Model/Config/PetClassCostConfig.cs | 33 ++++++++++++++++++---------------
1 files changed, 18 insertions(+), 15 deletions(-)
diff --git a/Core/GameEngine/Model/Config/PetClassCostConfig.cs b/Core/GameEngine/Model/Config/PetClassCostConfig.cs
index b1ab846..d431949 100644
--- a/Core/GameEngine/Model/Config/PetClassCostConfig.cs
+++ b/Core/GameEngine/Model/Config/PetClassCostConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: 绗簩涓栫晫
-// [ Date ]: Saturday, January 06, 2018
+// [ Date ]: Friday, January 04, 2019
//--------------------------------------------------------
using UnityEngine;
@@ -11,11 +11,12 @@
public partial class PetClassCostConfig : ConfigBase {
- public int ID { get ; private set ; }
- public int PetID { get ; private set ; }
- public int Rank { get ; private set ; }
- public int UpNeedExp { get ; private set ; }
- public int AtkAdd { get ; private set ; }
+ public int ID { get ; private set ; }
+ public int PetID { get ; private set ; }
+ public int Rank { get ; private set ; }
+ public int UpNeedExp { get ; private set ; }
+ public int AtkAdd { get ; private set ; }
+ public int NeedExpTotal { get ; private set ; }
public override string getKey()
{
@@ -25,15 +26,17 @@
public override void Parse() {
try
{
- ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
-
- PetID=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
-
- Rank=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
-
- UpNeedExp=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
-
- AtkAdd=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0;
+ ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
+
+ PetID=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
+
+ Rank=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
+
+ UpNeedExp=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
+
+ AtkAdd=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0;
+
+ NeedExpTotal=IsNumeric(rawContents[5]) ? int.Parse(rawContents[5]):0;
}
catch (Exception ex)
{
--
Gitblit v1.8.0