WIP DearImGui conversion

This commit is contained in:
Graham Pentheny
2025-07-10 11:11:54 -04:00
parent 9af5723d32
commit 6b906538dc
15 changed files with 862 additions and 302 deletions

View File

@@ -225,6 +225,7 @@ void NavMeshPruneTool::handleMenu()
return;
}
#if 0
if (imguiButton("Clear Selection"))
{
flags->clearAllFlags();
@@ -236,6 +237,7 @@ void NavMeshPruneTool::handleMenu()
delete flags;
flags = nullptr;
}
#endif
}
void NavMeshPruneTool::handleClick(const float* s, const float* p, bool shift)
@@ -323,5 +325,7 @@ void NavMeshPruneTool::handleRender()
void NavMeshPruneTool::handleRenderOverlay(double* /*proj*/, double* /*model*/, int* view)
{
#if 0
imguiDrawText(280, view[3] - 40, IMGUI_ALIGN_LEFT, "LMB: Click fill area.", imguiRGBA(255, 255, 255, 192));
#endif
}