From 4659f091aaab21459d286b9f30be1e231f8e4977 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期四, 15 十一月 2018 20:15:38 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts

---
 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