NavEditor: Move "Save" button below "Load"

Minor UX improvements.
This commit is contained in:
Kawe Mazidjatari 2023-03-25 12:24:09 +01:00
parent 59e084eafa
commit d2369af46e

View File

@ -275,11 +275,6 @@ void Editor_TileMesh::handleSettings()
imguiIndent();
imguiIndent();
if (imguiButton("Save"))
{
Editor::saveAll(m_modelName.c_str(), m_navMesh);
}
if (imguiButton("Load"))
{
dtFreeNavMesh(m_navMesh);
@ -287,6 +282,11 @@ void Editor_TileMesh::handleSettings()
m_navQuery->init(m_navMesh, 2048);
}
if (imguiButton("Save"))
{
Editor::saveAll(m_modelName.c_str(), m_navMesh);
}
imguiUnindent();
imguiUnindent();