Added a option to disable drawing axis in the view menu

This commit is contained in:
antopilo
2023-03-06 16:57:07 -05:00
parent a777f37830
commit 0df434282d
3 changed files with 6 additions and 1 deletions

View File

@@ -1273,6 +1273,8 @@ namespace Nuake {
if (ImGui::MenuItem("Lighting", NULL, true)) {}
if (ImGui::MenuItem("Draw grid", NULL, m_DrawGrid))
m_DrawGrid = !m_DrawGrid;
if (ImGui::MenuItem("Draw Axis", NULL, m_DrawAxis))
m_DrawAxis = !m_DrawAxis;
if (ImGui::MenuItem("Draw collisions", NULL, m_DebugCollisions))
{
m_DebugCollisions = !m_DebugCollisions;