From 402b14c0c3858963aad23a6371dfe20a2b93e507 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期四, 15 十一月 2018 16:27:02 +0800
Subject: [PATCH] 4805 【1.3】【前端】loading图增加等级显示

---
 Core/GameEngine/Model/Config/MapResourcesConfig.cs |   61 +++++++++++++-----------------
 1 files changed, 26 insertions(+), 35 deletions(-)

diff --git a/Core/GameEngine/Model/Config/MapResourcesConfig.cs b/Core/GameEngine/Model/Config/MapResourcesConfig.cs
index 28352bb..0bc6ec9 100644
--- a/Core/GameEngine/Model/Config/MapResourcesConfig.cs
+++ b/Core/GameEngine/Model/Config/MapResourcesConfig.cs
@@ -1,14 +1,14 @@
-锘�//--------------------------------------------------------
-//    [Author]:			绗簩涓栫晫
-//    [  Date ]:		   Friday, May 18, 2018
-//--------------------------------------------------------
-
-using UnityEngine;
-using System;
-
-namespace TableConfig {
-
-    
+锘�//--------------------------------------------------------
+//    [Author]:			绗簩涓栫晫
+//    [  Date ]:		   Thursday, November 15, 2018
+//--------------------------------------------------------
+
+using UnityEngine;
+using System;
+
+namespace TableConfig {
+
+    
 	public partial class MapResourcesConfig : ConfigBase {
 
 		public int ID { get ; private set ; }
@@ -22,17 +22,14 @@
 		public Vector3 MapOffset { get ; private set; } 
 		public int[] Effect;
 		public int Music { get ; private set ; }
-		public string[] LoadingBG;
-		public string LoadName { get ; private set; } 
-		public string LoadDescription { get ; private set; } 
 		public int ShowBOSSTime { get ; private set ; }
-
+
 		public override string getKey()
         {
             return ID.ToString();
-        }
-
-		public override void Parse() {
+        }
+
+		public override void Parse() {
 			try
             {
                 ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
@@ -62,24 +59,18 @@
 			
 				Music=IsNumeric(rawContents[10]) ? int.Parse(rawContents[10]):0; 
 			
-				LoadingBG = rawContents[11].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
-			
-				LoadName = rawContents[12].Trim();
-			
-				LoadDescription = rawContents[13].Trim();
-			
-				ShowBOSSTime=IsNumeric(rawContents[14]) ? int.Parse(rawContents[14]):0; 
+				ShowBOSSTime=IsNumeric(rawContents[11]) ? int.Parse(rawContents[11]):0; 
             }
             catch (Exception ex)
             {
                 DebugEx.Log(ex);
-            }
-		}
-	
-	}
-
-}
-
-
-
-
+            }
+		}
+	
+	}
+
+}
+
+
+
+

--
Gitblit v1.8.0