Fix ImguiUI.cpp (#81)

* Update ImguiUI.cpp

* Update ImguiUI.cpp
This commit is contained in:
MegaMech
2024-09-10 17:53:53 -06:00
committed by GitHub
parent f79b02348a
commit 62d23146ff
-9
View File
@@ -470,11 +470,6 @@ void DrawEnhancementsMenu() {
if (UIWidgets::BeginMenu("Gameplay")) {
UIWidgets::CVarCheckbox("No Level of Detail (LOD)", "gDisableLOD",
{ .tooltip = "Disable Level of Detail (LOD) to avoid models using "
"lower poly versions at a distance" });
UIWidgets::WindowButton("Freecam", "gFreecam", GameUI::mFreecamWindow, {
.tooltip = "Allows you to fly around the course"
});
@@ -482,8 +477,6 @@ void DrawEnhancementsMenu() {
"No Level of Detail (LOD)", "gDisableLod",
{ .tooltip = "Disable Level of Detail (LOD) to avoid models using lower poly versions at a distance" });
UIWidgets::CVarCheckbox("Ignore Rendering Limits", "gIgnoreRenderDistance",
{ .tooltip = "Renders game objects regardless of camera distance" });
UIWidgets::CVarCheckbox("Select any star from menu", "gCompletedGame",
{ .tooltip = "Unlocks extra mode and sets all gold cups." });
@@ -508,8 +501,6 @@ void DrawCheatsMenu() {
"Min Height", "gMinHeight", -50.0f, 50.0f, 0.0f,
{ .tooltip = "When Disable Wall Collision are enable what is the minimal height you can get." });
ImGui::EndMenu();
ImGui::EndMenu();
}
}