This commit is contained in:
ikpil 2023-09-08 23:43:17 +09:00
parent 95d25d8572
commit 010876b86e
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
namespace DotRecast.Recast.Demo.Tools;
public class CrowdFlowTool
{
// ...
}

View File

@ -741,7 +741,7 @@ public class CrowdSampleTool : ISampleTool
ImGui.Text("Debug Draw"); ImGui.Text("Debug Draw");
ImGui.Separator(); ImGui.Separator();
ImGui.Checkbox("Show Prox Grid", ref toolParams.m_showGrid); ImGui.Checkbox("Show Proximity Grid", ref toolParams.m_showGrid);
ImGui.Checkbox("Show Nodes", ref toolParams.m_showNodes); ImGui.Checkbox("Show Nodes", ref toolParams.m_showNodes);
ImGui.Text($"Update Time: {crowdUpdateTime} ms"); ImGui.Text($"Update Time: {crowdUpdateTime} ms");
} }