move Speed Control to debug menu

This commit is contained in:
Sonic Dreamcaster 2024-10-17 13:32:45 -03:00
parent 24c081f1b5
commit f33af0fc9a

View File

@ -417,10 +417,6 @@ void DrawEnhancementsMenu() {
.tooltip = "Disable Level of Detail (LOD) to avoid models using lower poly versions at a distance" .tooltip = "Disable Level of Detail (LOD) to avoid models using lower poly versions at a distance"
}); });
UIWidgets::CVarCheckbox("Speed Control", "gDebugSpeedControl", {
.tooltip = "Control the Arwing speed"
}
);
ImGui::EndMenu(); ImGui::EndMenu();
} }
@ -485,6 +481,10 @@ void DrawDebugMenu() {
.tooltip = "Disable vehicle collision" .tooltip = "Disable vehicle collision"
}); });
UIWidgets::CVarCheckbox("Speed Control", "gDebugSpeedControl", {
.tooltip = "Control the Arwing speed"
});
UIWidgets::Spacer(0); UIWidgets::Spacer(0);
UIWidgets::WindowButton("Stats", "gStatsEnabled", GameUI::mStatsWindow, { UIWidgets::WindowButton("Stats", "gStatsEnabled", GameUI::mStatsWindow, {