collapse bottom panel
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user