Merge branch 'TCX_LongZhu' of http://192.168.1.21:3000/root/miduo_client into TCX_LongZhu

SK_LongZhu
PC-202302260912\Administrator 2025-08-13 17:59:20 +08:00
commit f841042860
1 changed files with 29 additions and 20 deletions

View File

@ -181,11 +181,19 @@ namespace GameEditor.Core.DataConfig
if (m_Files != null && m_Files.Length != 0)
{
for (int i = 0; i < m_Files.Length; i++)
{
EditorGUILayout.BeginHorizontal();
m_Choose[i] = EditorGUILayout.ToggleLeft(m_Files[i], m_Choose[i]);
i++;
if (i < m_Files.Length)
{
m_Choose[i] = EditorGUILayout.ToggleLeft(m_Files[i], m_Choose[i]);
}
EditorGUILayout.EndHorizontal();
}
else {
}
else
{
EditorGUILayout.LabelField("未找到分支");
}
EditorGUILayout.EndVertical();
@ -555,7 +563,8 @@ namespace GameEditor.Core.DataConfig
if (tabType == TabType.Setting)
{
settingTab.OnGUI(contentRect);
} else if (tabType == TabType.Excel)
}
else if (tabType == TabType.Excel)
{
excelTab.OnGUI(contentRect);
}