Make app switcher disappear when opening album
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -168,11 +168,11 @@ namespace UI.CardSystem
|
|||||||
// If album exits while in Overworld, show AppSwitcher. If not, keep it hidden.
|
// If album exits while in Overworld, show AppSwitcher. If not, keep it hidden.
|
||||||
if (PlayerHudManager.Instance.currentUIMode == PlayerHudManager.UIMode.Overworld)
|
if (PlayerHudManager.Instance.currentUIMode == PlayerHudManager.UIMode.Overworld)
|
||||||
{
|
{
|
||||||
PlayerHudManager.Instance.appSwitcher.SetActive(true);
|
PlayerHudManager.Instance.ToggleAppSwitcher(true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
PlayerHudManager.Instance.appSwitcher.SetActive(false);
|
PlayerHudManager.Instance.ToggleAppSwitcher(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -45,6 +45,8 @@ namespace UI.CardSystem
|
|||||||
{
|
{
|
||||||
openAlbumButton.onClick.RemoveListener(OnOpenAlbumClicked);
|
openAlbumButton.onClick.RemoveListener(OnOpenAlbumClicked);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Debug.Log("ALBUM: CardAlbumDestroyed");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnOpenAlbumClicked()
|
private void OnOpenAlbumClicked()
|
||||||
@@ -71,6 +73,7 @@ namespace UI.CardSystem
|
|||||||
PlayerHudManager.Instance.appSwitcher.SetActive(false);
|
PlayerHudManager.Instance.appSwitcher.SetActive(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
PlayerHudManager.Instance.ToggleAppSwitcher(false);
|
||||||
// If we're already on the album main page, do nothing
|
// If we're already on the album main page, do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -145,5 +145,10 @@ public class PlayerHudManager : ManagedBehaviour
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void ToggleAppSwitcher(bool boo)
|
||||||
|
{
|
||||||
|
appSwitcher.SetActive(boo);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user