Add minimap to sidebar

This commit is contained in:
2025-08-08 23:43:57 -07:00
parent bd6794dafd
commit 953cba40c6
14 changed files with 14 additions and 96 deletions

View File

@@ -189,16 +189,6 @@ public partial class Game : Node3D, IGame
InGameUI.InventoryMenu.Hide();
InGameUI.InventoryMenu.SetProcessInput(false);
})
.Handle((in GameState.Output.OpenMiniMap _) =>
{
InGameUI.MiniMap.SetProcessUnhandledInput(true);
InGameUI.MiniMap.Show();
})
.Handle((in GameState.Output.CloseMiniMap _) =>
{
InGameUI.MiniMap.SetProcessUnhandledInput(false);
InGameUI.MiniMap.Hide();
})
.Handle((in GameState.Output.OpenDebugMenu _) =>
{
InGameUI.DebugMenu.Show();