From 786be46e6e29230779b556dca206f9d3599309ea Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期三, 13 二月 2019 17:49:02 +0800
Subject: [PATCH] 3335 配置表读取重构。

---
 Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs b/Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs
index 6b03857..e0d2cc9 100644
--- a/Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs
+++ b/Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs
@@ -454,7 +454,7 @@
         if (Config.Instance.inited && newbieGuides == null)
         {
             newbieGuides = new List<NewBieGuide>();
-            var guides = Config.Instance.GetAllValues<GuideConfig>();
+            var guides = GuideConfig.GetValues();
             foreach (var config in guides)
             {
                 if (config.Type == 1)
@@ -510,7 +510,7 @@
         if (Config.Instance.inited && functionalGuides == null)
         {
             functionalGuides = new List<FunctionalGuide>();
-            var guides = Config.Instance.GetAllValues<GuideConfig>();
+            var guides = GuideConfig.GetValues();
             foreach (var config in guides)
             {
                 if (config.Type == 2)

--
Gitblit v1.8.0