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

@@ -45,12 +45,14 @@ namespace UI.CardSystem
{
openAlbumButton.onClick.RemoveListener(OnOpenAlbumClicked);
}
Debug.Log("ALBUM: CardAlbumDestroyed");
}
private void OnOpenAlbumClicked()
{
if (UIPageController.Instance == null) return;
// Check if we're currently on the booster opening page
if (UIPageController.Instance.CurrentPage == boosterOpeningPage)
{
@@ -71,6 +73,7 @@ namespace UI.CardSystem
PlayerHudManager.Instance.appSwitcher.SetActive(false);
}
}
PlayerHudManager.Instance.ToggleAppSwitcher(false);
// If we're already on the album main page, do nothing
}