feat(Self): Add local visibility option (#116)

This commit is contained in:
Maddy
2022-05-02 15:15:49 -04:00
committed by GitHub
parent be7e00f4f6
commit 98c5596864
4 changed files with 27 additions and 4 deletions

View File

@ -32,6 +32,11 @@ namespace big
ImGui::BeginGroup();
ImGui::Checkbox("Invisibility", &g->self.invisibility);
if (g->self.invisibility)
{
ImGui::Checkbox("Locally Visible", &g->self.local_visibility);
}
ImGui::Checkbox("Keep Player Clean", &g->self.clean_player);
if (ImGui::Button("Clean Player"))
{