BuildWindow看不到底部按钮的问题
parent
a1ac21c857
commit
fa9004ef3a
|
|
@ -365,7 +365,13 @@ namespace GameEditor.FrameTool {
|
||||||
{
|
{
|
||||||
for (int i = 0; i < m_Files.Length; i++)
|
for (int i = 0; i < m_Files.Length; i++)
|
||||||
{
|
{
|
||||||
|
EditorGUILayout.BeginHorizontal();
|
||||||
m_Choose[i] = EditorGUILayout.ToggleLeft(Path.GetFileNameWithoutExtension(m_Files[i]), m_Choose[i]);
|
m_Choose[i] = EditorGUILayout.ToggleLeft(Path.GetFileNameWithoutExtension(m_Files[i]), m_Choose[i]);
|
||||||
|
i++;
|
||||||
|
if(i < m_Files.Length){
|
||||||
|
m_Choose[i] = EditorGUILayout.ToggleLeft(Path.GetFileNameWithoutExtension(m_Files[i]), m_Choose[i]);
|
||||||
|
}
|
||||||
|
EditorGUILayout.EndHorizontal();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue