More WIP DearImGUI conversion

This commit is contained in:
Graham Pentheny
2025-07-13 12:43:10 -04:00
parent d534b4dc14
commit 95a7b45c32
10 changed files with 206 additions and 252 deletions

View File

@@ -70,14 +70,13 @@ void Sample_SoloMesh::handleSettings()
ImGui::Separator();
ImGui::Indent();
ImGui::Indent();
if (ImGui::Button("Save"))
{
saveAll("solo_navmesh.bin", navMesh);
}
ImGui::SameLine();
if (ImGui::Button("Load"))
{
dtFreeNavMesh(navMesh);
@@ -85,9 +84,6 @@ void Sample_SoloMesh::handleSettings()
navQuery->init(navMesh, 2048);
}
ImGui::Unindent();
ImGui::Unindent();
ImGui::Text("Build Time: %.1fms", totalBuildTimeMs);
ImGui::Separator();