Make app switcher disappear when opening album

This commit is contained in:
MacBuilder
2025-11-09 00:20:48 +01:00
parent 5d0a9f999a
commit a80aed8eb7
4 changed files with 12 additions and 395 deletions

View File

@@ -168,11 +168,11 @@ namespace UI.CardSystem
// If album exits while in Overworld, show AppSwitcher. If not, keep it hidden.
if (PlayerHudManager.Instance.currentUIMode == PlayerHudManager.UIMode.Overworld)
{
PlayerHudManager.Instance.appSwitcher.SetActive(true);
PlayerHudManager.Instance.ToggleAppSwitcher(true);
}
else
{
PlayerHudManager.Instance.appSwitcher.SetActive(false);
PlayerHudManager.Instance.ToggleAppSwitcher(false);
}
}