SK_LongZhu
parent
a25b53a9b1
commit
cf288e1915
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue