collapse bottom panel

This commit is contained in:
Matt Parker
2025-08-27 21:28:45 +10:00
parent e26e9dbd9f
commit e162e6ba5e
5 changed files with 51 additions and 20 deletions

View File

@@ -4,6 +4,9 @@ public static class GodotGlobalEvents
{
public static event Func<BottomPanelType?, Task> BottomPanelTabSelected = _ => Task.CompletedTask;
public static void InvokeBottomPanelTabSelected(BottomPanelType? type) => BottomPanelTabSelected.Invoke(type);
public static event Func<bool, Task> BottomPanelVisibilityChangeRequested = _ => Task.CompletedTask;
public static void InvokeBottomPanelVisibilityChangeRequested(bool show) => BottomPanelVisibilityChangeRequested.Invoke(show);
}
public enum BottomPanelType