Bläddra i källkod

Merge branch 'feature/编辑模块_fzb' into 灵树

# Conflicts:
#	ModeDisplay/Assets/ChivaFramework/Framework/Init/GameLaunch.cs
#	ModeDisplay/ProjectSettings/EditorBuildSettings.asset
2809621200 2 veckor sedan
förälder
incheckning
b36663afed

+ 5 - 4
ModeDisplay/Assets/ChivaFramework/Framework/Init/GameLaunch.cs

@@ -35,13 +35,14 @@ public class GameLaunch : MonoBehaviour
         }
 
         //模拟数据
-        //string simulationData = "4f92a652b13518f36f5d241291fc4df4892b29d5/金风GW109-2500永磁直驱风力发电机组///47.92.0.243:15155/None/金风GW109-2500永磁直驱风力发电机组/124444  ";
+        
+        //string simulationData = "4f92a652b13518f36f5d241291fc4df4892b29d5/联合风机///47.92.0.243:15155/None/联合风机/124444  ";
         //string[] tmpArgs = simulationData.Split('/');
         //截断
         //13q7cxZXA2yqjZHT1P36JCkgMcWahBkYl5AzaTF7zCEmF6I6uVdtLN3klkg38FYVJ5UXjfU2GFRSPs2t1tyi8lZOuX1w2y0IpB1SeaCCnuJLMu4Z368EM / IPCb4xzxETok + I996fvrBVpcZNW / CAIlZ / FTqO9Xzz + YaNHq5aWji6ueQ9lLssuRVfn6d4Yt0lwwsXDNLxiFM1gLMa6JaQYA ==
-        string a = "13q7cxZXA2yqjZHT1P36JCkgMcWahBkYl5AzaTF7zCEmF6I6uVdtLN3klkg38FYVJ5UXjfU2GFRSPs2t1tyi8lZOuX1w2y0IpB1SeaCCnuJLMu4Z368EM/IPCb4xzxETok+I996fvrBVpcZNW/CAIlZ/FTqO9Xzz+YaNHq5aWji6ueQ9lLssuRVfn6d4Yt0lwwsXDNLxiFM1gLMa6JaQYA== ";
-        string[] tmpArgs = a.Decrypt("chivatech").Split('/');
-        //string[] tmpArgs = args[1].Decrypt("chivatech").Split('/');
+        //string a = "13q7cxZXA2yqjZHT1P36JCkgMcWahBkYl5AzaTF7zCEmF6I6uVdtLN3klkg38FYVJ5UXjfU2GFRSPs2t1tyi8lZOuX1w2y0IpB1SeaCCnuJLMu4Z368EM/IPCb4xzxETok+I996fvrBVpcZNW/CAIlZ/FTqO9Xzz+YaNHq5aWji6ueQ9lLssuRVfn6d4Yt0lwwsXDNLxiFM1gLMa6JaQYA== ";
+        //string[] tmpArgs = a.Decrypt("chivatech").Split('/');
+        string[] tmpArgs = args[1].Decrypt("chivatech").Split('/');
 
         // 文件各种:手机号/课程名/模式/地址
         string tmpPhoneNumber = "";

+ 1 - 1
ModeDisplay/Assets/GameAssets/06.UIPrefabs/CustomPartPanel.prefab

@@ -4923,7 +4923,7 @@ MonoBehaviour:
       m_Calls: []
   m_FontData:
     m_Font: {fileID: 12800000, guid: e3e4a2f036d982644bcb6c61b7e31b18, type: 3}
-    m_FontSize: 27
+    m_FontSize: 20
     m_FontStyle: 0
     m_BestFit: 0
     m_MinSize: 2

+ 1 - 1
ModeDisplay/Assets/Scenes/AsyncLoad.unity

@@ -660,7 +660,7 @@ MonoBehaviour:
   m_OnCullStateChanged:
     m_PersistentCalls:
       m_Calls: []
-  m_Sprite: {fileID: 21300000, guid: 648c7786efa5e1547a87aff98f811862, type: 3}
+  m_Sprite: {fileID: 21300000, guid: 353d508bd57fb6345889648deb2f49c0, type: 3}
   m_Type: 0
   m_PreserveAspect: 0
   m_FillCenter: 1

+ 4 - 2
ModeDisplay/Assets/Scripts/DeviceController.cs

@@ -21,6 +21,8 @@ public class DeviceController : MonoBehaviour
     public bool ShowCustomPanel = false;
     public bool ifShowCoustom = true;
 
+    public bool isDelectCustomTable = false;
+
     private void Awake()
     {
         instance = this;
@@ -57,10 +59,10 @@ public class DeviceController : MonoBehaviour
 
         if (Input.GetKey(KeyCode.LeftControl) || Input.GetKey(KeyCode.RightControl))
         {
-            if (Input.GetKeyDown(KeyCode.F4))
+            if (Input.GetKeyDown(KeyCode.F4) && !isDelectCustomTable)
             {
                 if (ShowCustomPanel)
-                    UIKit.ClosePanel<CustomPartPanel>();
+                    UIKit.HidePanel<CustomPartPanel>();
                 else
                     UIKit.OpenPanel<CustomPartPanel>();
                 ShowCustomPanel = !ShowCustomPanel;

+ 5 - 4
ModeDisplay/Assets/Scripts/Proxys/DeviceOfPartDataProxy.cs

@@ -12,8 +12,6 @@ public class DeviceOfPartDataProxy : DataProxy
     public List<CustomPartData> m_CustomInfos;
 
     public List<GameObject> objects = new List<GameObject>();
-    Dictionary<string, Transform> pathToTransform = new Dictionary<string, Transform>();
-
     public override void OnRegister()
     {
         
@@ -72,6 +70,11 @@ public class DeviceOfPartDataProxy : DataProxy
         return m_CustomInfos.Find(t => t.partName == partName);
     }
 
+    public CustomPartData GetCustomByIdName(string id)
+    {
+        return m_CustomInfos.Find(t => t.id == id);
+    }
+
     public void CoverTableInfos()
     {
         for (int i = 0; i < m_CustomInfos.Count; i++)
@@ -89,14 +92,12 @@ public class DeviceOfPartDataProxy : DataProxy
     }
     public void endTableEditInfos(bool first = false)
     {
-        List<string> paths = new List<string>();
         List<RestoreData> datas = new List<RestoreData>();
         for (int i = 0; i < m_CustomInfos.Count; i++)
         {
             int j = i;
             GameObject tmpObj = GameObject.Find(m_CustomInfos[j].AbsolutePath);
             objects.Add(tmpObj);
-            pathToTransform.Add(m_CustomInfos[j].EditPath,tmpObj.transform);
             datas.Add(new RestoreData(tmpObj.transform, m_CustomInfos[j].EditPath));
         }
 

+ 107 - 27
ModeDisplay/Assets/Scripts/UI/QFramework/CustomPartPanel.cs

@@ -28,7 +28,7 @@ namespace QFramework
 		private string ConfigSerachPath;
 		private string AbsolutePath;
 
-		private List<PartItem> PartListData;
+		public List<CustomItem> CustomAllData;
 
 		private int ExcelIndex;
 
@@ -37,7 +37,7 @@ namespace QFramework
 		/// <summary> 是否修改存储文件修改 </summary>
 		private bool ifSaveFileChange = false;
 
-		List<CustomItem> editObjs;
+		public List<CustomItem> editObjs;
 
 		public enum CustomPanelBtnkState
 		{
@@ -67,8 +67,8 @@ namespace QFramework
 			AudioSearchPath = $"{Application.streamingAssetsPath}/Config/Audios/内部结构/{DeviceController.instance.DeviceName}";
 			SubtitleSearchPath = $"{Application.streamingAssetsPath}/SubTitles/内部结构/{DeviceController.instance.DeviceName}";
 			ConfigSerachPath = $"{Application.streamingAssetsPath}/Config/内部结构设备自定义配置/{DeviceController.instance.DeviceName}.xlsx";
-			
-			PartListData =  new List<PartItem>();
+
+			CustomAllData = new List<CustomItem>();
 			editObjs = new List<CustomItem>();
 
 			//如果修改表格不存在就创建表格
@@ -84,10 +84,14 @@ namespace QFramework
 
 			//创建Item
 			CustomItem customExample = Instantiate(CustomItem.gameObject,Content).GetComponent<CustomItem>();
-			customExample.gameObject.SetActive(true);
-			customExample.InitData(DeviceController.instance.GetDevicePartInfos(DeviceController.instance.transform.GetComponent<PartMark>()));
+			customExample.InitData(DeviceController.instance.GetDevicePartInfos(DeviceController.instance.transform.GetComponent<PartMark>()),ref CustomAllData);
 			customExample.UnExpandChildPartItem();
 			customExample.ExpandChildPartItem();
+
+            for (int i = 0; i < DAL.Instance.Get<DeviceOfPartDataProxy>().m_CustomInfos.Count; i++)
+            {
+				editObjs.Add( CustomAllData.Find(t => t.partInfo.partName == DAL.Instance.Get<DeviceOfPartDataProxy>().m_CustomInfos[i].partName));
+			}
 			
 			addBtnOnclick();
 		}
@@ -97,8 +101,11 @@ namespace QFramework
 			//修改名称按钮
 			PartNameBtn.onClick.AddListener(() =>
 			{
-				if(initCustomTable())
+				if (SelectItem == null)
+				{
 					return;
+				}
+				initCustomTable();
 				SetBtnInteractable(false);
 				CustomState = CustomPanelBtnkState.NameEdit;
 
@@ -117,8 +124,11 @@ namespace QFramework
 			//修改媒体资源按钮
 			ResourcesBtn.onClick.AddListener(() =>
 			{
-				if (initCustomTable())
+				if(SelectItem == null)
+                {
 					return;
+                }
+				initCustomTable();
 				SetBtnInteractable(false);
 				CustomState = CustomPanelBtnkState.ResourceEdit;
 
@@ -135,8 +145,11 @@ namespace QFramework
 
 			HierarchyBtn.onClick.AddListener(() =>
 			{
-				if (initCustomTable())
+				if (SelectItem == null)
+				{
 					return;
+				}
+				initCustomTable();
 				IFChangeLayer = true;
 				SetBtnInteractable(false);
 				CustomState = CustomPanelBtnkState.LayerEdit;
@@ -153,7 +166,8 @@ namespace QFramework
 
 			PanelExitBtn.onClick.AddListener(() =>
 			{
-				UIKit.ClosePanel<CustomPartPanel>();
+				UIKit.HidePanel<CustomPartPanel>();
+				
 				DeviceController.instance.ShowCustomPanel = !DeviceController.instance.ShowCustomPanel;
 			});
 
@@ -175,7 +189,12 @@ namespace QFramework
 					
 					RefreshPartItemList();
 					RefreshCustomItemList();
-					DeleteTableBtnText.text = "点击添加修改配置表";
+					DeleteTableBtnText.text = "配置表已删除";
+					PromptMessage.text = "重新启动以恢复配置修改。\n配置表将在下次打开编辑页面时自动生成。";
+					DeleteCustomTbaleBtn.interactable = false;
+					SelectItem = null;
+					DeviceController.instance.isDelectCustomTable = true;
+					isDelectTable = true;
 				}
                 else
                 {
@@ -192,22 +211,25 @@ namespace QFramework
 		}
 
 
-		private bool initCustomTable()
+
+		private void initCustomTable()
         {
 			if (SelectItem == null)
-				return true;
+				return;
 
-			if (DAL.Instance.Get<DeviceOfPartDataProxy>().GetCustomByEditPartName(SelectItem.partInfo.partName) == null
-				&& DAL.Instance.Get<DeviceOfPartDataProxy>().GetCustomByPartName(SelectItem.partInfo.partName) == null)
-			{
-				DAL.Instance.Get<DeviceOfPartDataProxy>().ReadCustomInfoFromTable(DeviceController.instance.DeviceName);
-				CustomPartData data = new CustomPartData(SelectItem.partInfo.partName, SubtitleName.text.Substring(0, SubtitleName.text.LastIndexOf('.')), SelectItem.partInfo.partName, AbsolutePath);
-				ExcelHelper.WriteInfoToExcel(ConfigSerachPath, data);
-				ExcelIndex = data.id.ToInt()+1;
-				editObjs.Add(SelectItem);
-			}
+			if (DAL.Instance.Get<DeviceOfPartDataProxy>().GetCustomByEditPartName(SelectItem.TitleText.text) != null)
+				return;
+
+			if (DAL.Instance.Get<DeviceOfPartDataProxy>().GetCustomByPartName(SelectItem.TitleText.text) != null)
+				return;
+
+			
+			CustomPartData data = new CustomPartData(SelectItem.partInfo.partName, SubtitleName.text.Substring(0, SubtitleName.text.LastIndexOf('.')), SelectItem.partInfo.partName, AbsolutePath, AbsolutePath);
+			ExcelHelper.WriteInfoToExcel(ConfigSerachPath, data);
+			DAL.Instance.Get<DeviceOfPartDataProxy>().ReadCustomInfoFromTable(DeviceController.instance.DeviceName);
+			ExcelIndex = data.id.ToInt()+1;
+			editObjs.Add(SelectItem);
 
-			return false;
 		}
 		public string GetAbsolutePath(CustomItem tmpItem)
 		{
@@ -228,11 +250,15 @@ namespace QFramework
 			PartNameBtn.interactable = ifOpen;
 		}
 
+		public bool isDelectTable = false;
+
 		#region 获取选中信息
 		/// <summary> 获取选中的组件信息 </summary>
 		/// <param name="customItem"></param>
 		public void GetSelectChangeMessage(CustomItem customItem)
 		{
+			if (isDelectTable)
+				return;
 			if (IFChangeLayer)
 			{
 				if (SelectItem == customItem)
@@ -491,9 +517,32 @@ namespace QFramework
 
 		#region 层级修改
 
+		public bool ifChangeInChild(CustomItem tmpItem)
+		{
+			foreach (CustomItem item in tmpItem.childCustomInfo)
+			{
+			
+				if (item.TitleText.text.Equals(SelectNewParent.TitleText.text))
+				{
+					PromptMessage.text = $"请先将子层级部件上移\n禁止直接将父层级下移至其子层级";
+					return false;  // 找到匹配,返回 false
+				}
+
+				if (!ifChangeInChild(item))
+				{
+					return false;  // 子项中找到匹配,返回 false
+				}
+			}
+			return true;  // 所有子项都没有匹配,返回 true
+		}
+
 		public void SaveLayerBtnOnClick()
         {
-			if (SelectNewParent == null)
+			
+			if (SelectNewParent == null )
+				return;
+
+			if (! ifChangeInChild(SelectItem))
 				return;
 
 			ChangeLayer();
@@ -658,9 +707,40 @@ namespace QFramework
 			DeviceController.instance.ifShowCoustom = false;
 
 		}
-				
-		protected override void OnClose()
+
+        protected override void OnHide()
+        {
+			FileInfo tmpFileInfo = new FileInfo(ConfigSerachPath);
+			if (!tmpFileInfo.Exists)
+				return;
+
+			DeviceController.instance.ifShowCoustom = true;
+
+			DAL.Instance.Get<DeviceOfPartDataProxy>().ReadCustomInfoFromTable(DeviceController.instance.DeviceName);
+			DAL.Instance.Get<DeviceOfPartDataProxy>().CoverTableInfos();
+			RefreshPartItemList();
+
+			foreach (CustomItem item in editObjs)
+			{
+
+				CustomPartData customPartData = DAL.Instance.Get<DeviceOfPartDataProxy>().GetCustomByEditPartName(item.TitleText.text);
+				ExcelIndex = customPartData.id.ToInt() + 1;
+
+				using (ExcelPackage excelPackage = new ExcelPackage(new FileInfo(ConfigSerachPath)))
+				{
+					ExcelWorksheet worksheet = excelPackage.Workbook.Worksheets[1];
+					worksheet.Cells[ExcelIndex, 6].Value = GetAbsolutePath(item);
+					excelPackage.Save();
+				}
+			}
+		}
+
+        protected override void OnClose()
 		{
+			FileInfo tmpFileInfo = new FileInfo(ConfigSerachPath);
+			if (!tmpFileInfo.Exists)
+				return;
+
 			DeviceController.instance.ifShowCoustom = true;
 
 			DAL.Instance.Get<DeviceOfPartDataProxy>().ReadCustomInfoFromTable(DeviceController.instance.DeviceName);
@@ -693,7 +773,7 @@ namespace QFramework
 		public string AbsolutePath;
 		public string EditPath;
 
-		public CustomPartData( string partName,string audioClipName,string editName,string AbsolutePath,string EditParh = "",string EditPath = "")
+		public CustomPartData( string partName,string audioClipName,string editName,string AbsolutePath,string EditPath = "")
         {
 			id = (DAL.Instance.Get<DeviceOfPartDataProxy>().m_CustomInfos.Count+1).ToString();
 			this.partName = partName;

+ 11 - 7
ModeDisplay/Assets/Scripts/UI/QFramework/CustomPartPanel/CustomItem.cs

@@ -17,7 +17,6 @@ namespace QFramework
 		public CustomItem parentItem;
 		public PartInfo partInfo;
 		public int level;
-		public string partName;
 
 		public List<CustomItem> childCustomInfo;
 
@@ -30,12 +29,17 @@ namespace QFramework
 
             ClickBtn.onClick.AddListener(() =>
             {
-				if (!new FileInfo(Path.Combine(GlobalConfig.partEditTablePath, DeviceController.instance.DeviceName + GlobalConfig.excelSuffix)).Exists)
+				if (UIKit.GetPanel<CustomPartPanel>().isDelectTable)
 				{
-					UIKit.GetPanel<CustomPartPanel>().PromptMessage.text = "确少可修改的配置表\n点击左下角进行创建可修改的配置表";
-					UIKit.GetPanel<CustomPartPanel>().DeleteTableBtnText.text = "点击添加修改配置表";
 					return;
 				}
+
+                if (UIKit.GetPanel<CustomPartPanel>().SaveEditBtn.IsActive() || UIKit.GetPanel<CustomPartPanel>().ExitEditBtn.IsActive())
+                {
+					if(UIKit.GetPanel<CustomPartPanel>().CustomState == CustomPartPanel.CustomPanelBtnkState.LayerEdit)
+						UIKit.GetPanel<CustomPartPanel>().GetSelectChangeMessage(this);
+					return;
+                }
 				if (transform.GetSiblingIndex() != 0)
                 UIKit.GetPanel<CustomPartPanel>().GetSelectChangeMessage(this); 
 
@@ -72,13 +76,13 @@ namespace QFramework
 		}
 	
 
-		public void InitData(PartInfo partInfo, CustomItem parentItem = null, int level = 0 )
+		public void InitData(PartInfo partInfo, ref List<CustomItem> customs, CustomItem parentItem = null, int level = 0 )
 		{
 			gameObject.SetActive(true);
 			this.level = level;
 			this.partInfo = partInfo;
 			this.parentItem = parentItem;
-
+			customs.Add(this);
 			TitleText.text = partInfo.partName;
 
 			RectTransform tmpRt = Position.GetComponent<RectTransform>();
@@ -89,7 +93,7 @@ namespace QFramework
 				GameObject tmpPartItem = Instantiate(UIKit.GetPanel<CustomPartPanel>().CustomItem.gameObject, transform.parent);
 				tmpPartItem.name = item.partName;
 				childCustomInfo.Add(tmpPartItem.GetComponent<CustomItem>());
-				tmpPartItem.GetComponent<CustomItem>().InitData(item,this, level + 1);
+				tmpPartItem.GetComponent<CustomItem>().InitData(item,ref customs, this, level + 1);
 			}
 
 			if (childCustomInfo.Count == 0)

+ 1 - 1
ModeDisplay/Assets/Scripts/UI/QFramework/PartListPanel.cs

@@ -216,7 +216,7 @@ namespace QFramework
             AllCmaera();
             UIKit.HidePanel<PartListPanel>();
 
-            UIKit.ClosePanel<CustomPartPanel>();
+            UIKit.HidePanel<CustomPartPanel>();
             DeviceController.instance.ShowCustomPanel = false;
             DeviceController.instance.gameObject.SetActive(false);
         }

+ 0 - 0
ModeDisplay/Assets/StreamingAssets/Config/内部结构设备自定义配置/占位文档.txt → ModeDisplay/Assets/StreamingAssets/Config/内部结构设备自定义配置/空白占位.txt


+ 1 - 1
ModeDisplay/Assets/StreamingAssets/Config/内部结构设备自定义配置/占位文档.txt.meta → ModeDisplay/Assets/StreamingAssets/Config/内部结构设备自定义配置/空白占位.txt.meta

@@ -1,5 +1,5 @@
 fileFormatVersion: 2
-guid: f1638de85a65ce24fa182b3995ba0759
+guid: 5da1e68a8c3f43f4492e46db17d460af
 DefaultImporter:
   externalObjects: {}
   userData: 

BIN
ModeDisplay/Assets/StreamingAssets/Config/内部结构设备自定义配置/联合风机.xlsx


+ 0 - 7
ModeDisplay/Assets/StreamingAssets/Config/内部结构设备自定义配置/联合风机.xlsx.meta

@@ -1,7 +0,0 @@
-fileFormatVersion: 2
-guid: d2a85895981050345a5697d233cccd2f
-DefaultImporter:
-  externalObjects: {}
-  userData: 
-  assetBundleName: 
-  assetBundleVariant: 

BIN
ModeDisplay/Assets/StreamingAssets/Config/内部结构设备自定义配置/金风GW109-2500永磁直驱风力发电机组.xlsx


+ 0 - 7
ModeDisplay/Assets/StreamingAssets/Config/内部结构设备自定义配置/金风GW109-2500永磁直驱风力发电机组.xlsx.meta

@@ -1,7 +0,0 @@
-fileFormatVersion: 2
-guid: 878298303a2a2824f804438317dc6d10
-DefaultImporter:
-  externalObjects: {}
-  userData: 
-  assetBundleName: 
-  assetBundleVariant: 

+ 24 - 15
ModeDisplay/ProjectSettings/EditorBuildSettings.asset

@@ -11,18 +11,12 @@ EditorBuildSettings:
   - enabled: 1
     path: Assets/Scenes/AsyncLoad.unity
     guid: 1dd9e366d4f9e8b418bc56a692130e37
-  - enabled: 1
-    path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u673A\u68B0\u8054\u52A8\u7279\u6027/\u91D1\u98CEGW109-2500\u6C38\u78C1\u76F4\u9A71.unity"
-    guid: 422efcdffae29cc47bb1414fcf02d012
-  - enabled: 1
-    path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u673A\u68B0\u8054\u52A8\u7279\u6027/\u8054\u5408\u52A8\u529BUP5300-176\u578B\u98CE\u529B\u53D1\u7535\u673A\u7EC4.unity"
-    guid: 3e493696fa555b7438178088e8cd77f8
-  - enabled: 1
-    path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/\u8054\u5408\u52A8\u529B\u53CC\u9988\u5F02\u6B65\u53D1\u7535\u673A\u7EC4.unity"
-    guid: 74806e7da0e1d0948b7506f04f75b999
-  - enabled: 1
-    path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/\u91D1\u98CEGW109-2500\u6C38\u78C1\u76F4\u9A71\u98CE\u529B\u53D1\u7535\u673A\u7EC4.unity"
-    guid: 5345154bff89b394bb7434f77bef5310
+  - enabled: 0
+    path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/\u4E1C\u65B9\u7535\u673A\u673A\u7EC4_\u6C34\u8F6E\u53D1\u7535\u673A.unity"
+    guid: 672b4b6273144174daac8854e1447369
+  - enabled: 0
+    path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/\u963F\u5C14\u65AF\u901A\u673A\u7EC4_\u6C34\u8F6E\u53D1\u7535\u673A.unity"
+    guid: 706b6bc76336b82418feaa765e67dd7c
   - enabled: 0
     path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u4E8C\u6B21\u56DE\u8DEF\u539F\u7406/10kV\u771F\u7A7A\u65AD\u8DEF\u5668-\u4E8C\u6B21\u56DE\u8DEF\u539F\u7406.unity"
     guid: 5deccb2431fb08742aa9dbd3a2e46f91
@@ -38,6 +32,9 @@ EditorBuildSettings:
   - enabled: 0
     path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u673A\u68B0\u8054\u52A8\u7279\u6027/10kV\u5F00\u5173\u67DC-\u673A\u68B0\u8054\u52A8\u7279\u6027.unity"
     guid: 6b5e63f030b810f47bc4c6cd1addcb62
+  - enabled: 0
+    path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u673A\u68B0\u8054\u52A8\u7279\u6027/\u8054\u5408\u52A8\u529BUP5300-176\u578B\u98CE\u529B\u53D1\u7535\u673A\u7EC4.unity"
+    guid: 3e493696fa555b7438178088e8cd77f8
   - enabled: 0
     path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u673A\u68B0\u8054\u52A8\u7279\u6027/110kV\u65AD\u8DEF\u5668-\u673A\u68B0\u8054\u52A8\u7279\u6027.unity"
     guid: 1a4c95a14f2672f448e801a8768de740
@@ -59,9 +56,6 @@ EditorBuildSettings:
   - enabled: 0
     path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u673A\u68B0\u8054\u52A8\u7279\u6027/500kV\u9694\u79BB\u5F00\u5173-\u673A\u68B0\u8054\u52A8\u7279\u6027.unity"
     guid: 40cbdb3f83227594db74194e3c2ba0d0
-  - enabled: 0
-    path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u71C3\u5F27\u7184\u5F27\u7279\u6027/10kV\u5F00\u5173\u67DC-\u71C3\u5F27\u7184\u5F27\u7279\u6027.unity"
-    guid: baf33622a9bbdbc418caa93786c13323
   - enabled: 0
     path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u71C3\u5F27\u7184\u5F27\u7279\u6027/10kV\u771F\u7A7A\u65AD\u8DEF\u5668-\u71C3\u5F27\u7184\u5F27\u7279\u6027.unity"
     guid: e5a564aa1bf68a548ba91f53dacc554d
@@ -92,6 +86,12 @@ EditorBuildSettings:
   - enabled: 0
     path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/04.220kV\u65AD\u8DEF\u5668-LW25\u578B.unity"
     guid: 3ec56c2508e263346b363d74e97ae991
+  - enabled: 1
+    path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/\u91D1\u98CE\u98CE\u529B\u53D1\u7535\u7EC4.unity"
+    guid: 5345154bff89b394bb7434f77bef5310
+  - enabled: 1
+    path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/\u8054\u5408\u98CE\u673A.unity"
+    guid: 74806e7da0e1d0948b7506f04f75b999
   - enabled: 0
     path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/06.500kV\u9694\u79BB\u5F00\u5173-GW12\u578B.unity"
     guid: bf5fe4af08be3d04280497449c870777
@@ -107,4 +107,13 @@ EditorBuildSettings:
   - enabled: 0
     path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/10.10kV\u5F00\u5173\u67DC\u4E2D\u7684\u771F\u7A7A\u65AD\u8DEF\u5668-VS1\u578B.unity"
     guid: 8d701a502e7919d42b49880bb3864ab1
+  - enabled: 0
+    path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/11.\xB1500kV\u6362\u6D41\u53D8\u538B\u5668.unity"
+    guid: b8e4c549410ec9946bd7344db6331ab1
+  - enabled: 0
+    path: "Assets/Scenes/\u5185\u90E8\u7ED3\u6784/220kV GIS_ZF16-252.unity"
+    guid: fabde7f3ef1195a45921e1253c5eb72c
+  - enabled: 0
+    path: "Assets/Scenes/\u8FD0\u884C\u539F\u7406/\u71C3\u5F27\u7184\u5F27\u7279\u6027/10kV\u5F00\u5173\u67DC-\u71C3\u5F27\u7184\u5F27\u7279\u6027.unity"
+    guid: baf33622a9bbdbc418caa93786c13323
   m_configObjects: {}