commit
00e5f36417
@ -22,7 +22,7 @@ namespace cheat::feature
|
|||||||
|
|
||||||
void HideUI::DrawMain()
|
void HideUI::DrawMain()
|
||||||
{
|
{
|
||||||
ConfigWidget(f_Enabled, "Hide in-game UI.");
|
ConfigWidget(f_Enabled, "Hide in-game UI.\nWhen you switch to another scene (e.g. into Domains), turn off and re-enable this feature");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HideUI::NeedStatusDraw() const
|
bool HideUI::NeedStatusDraw() const
|
||||||
@ -48,14 +48,16 @@ namespace cheat::feature
|
|||||||
if (ui_camera == nullptr)
|
if (ui_camera == nullptr)
|
||||||
ui_camera = app::GameObject_Find(string_to_il2cppi("/UICamera"), nullptr);
|
ui_camera = app::GameObject_Find(string_to_il2cppi("/UICamera"), nullptr);
|
||||||
|
|
||||||
|
|
||||||
if (ui_camera)
|
if (ui_camera)
|
||||||
app::GameObject_SetActive(ui_camera, false, nullptr);
|
app::GameObject_SetActive(ui_camera, false, nullptr);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (ui_camera)
|
if (ui_camera)
|
||||||
|
{
|
||||||
app::GameObject_SetActive(ui_camera, true, nullptr);
|
app::GameObject_SetActive(ui_camera, true, nullptr);
|
||||||
|
ui_camera = nullptr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user