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

@@ -116,7 +116,7 @@ public class PlayerHudManager : ManagedBehaviour
public void UpdateUIMode(UIMode mode)
{
switch (mode)
switch (mode)
{
case UIMode.Overworld:
// Update currentUIMode var
@@ -144,6 +144,11 @@ public class PlayerHudManager : ManagedBehaviour
break;
}
}
public void ToggleAppSwitcher(bool boo)
{
appSwitcher.SetActive(boo);
}
}