【打包配置】修复数据未清理的问题

dev_chengFeng
gaoxin 2021-09-18 09:50:37 +08:00
parent abe720d43d
commit 7f988480b1
1 changed files with 2 additions and 1 deletions

View File

@ -77,6 +77,7 @@ public class AutoPack : EditorWindow
static void LoadConfig()
{
PackConfig.Clear();
Hashtable config = ClientConfigManager.Instance.GetAutoPackConfig();
foreach (string k in config.Keys)
{
@ -119,7 +120,7 @@ public class AutoPack : EditorWindow
benchName = GitUtil.GetCurBenchName();
UnityEngine.Debug.Log("当前分支:" + benchName);
//创建窗口
Rect wr = new Rect(0, 0, 500, 700);
Rect wr = new Rect(0, 0, 500, 1000);
var buildWin = GetWindowWithRect<AutoPack>(wr, true);
buildWin.titleContent = new GUIContent("打包工具");
buildWin.Show();