feat(Vehicle): invisible car (#833)

This commit is contained in:
TheGreenBandit
2023-01-08 15:27:23 -05:00
committed by GitHub
parent 703d1ef07f
commit 86c44f38b5
3 changed files with 41 additions and 2 deletions

View File

@ -71,6 +71,12 @@ namespace big
ImGui::Checkbox("God Mode", &g.vehicle.god_mode);
components::command_checkbox<"hornboost">();
components::command_checkbox<"vehjump">();
components::command_checkbox<"invisveh">();
if (g.vehicle.vehinvisibility)
{
components::command_checkbox<"localinvisveh">();
components::command_checkbox<"localinvisped">();
}
ImGui::EndGroup();
ImGui::SameLine();
@ -175,7 +181,6 @@ namespace big
}
ImGui::Separator();
components::sub_title("Speedo Meter");
{
ImGui::Checkbox("Enabled", &g.vehicle.speedo_meter.enabled);