This commit is contained in:
2025-08-08 13:01:15 +08:00
parent bf9b850999
commit 2fb74fe1d8
2 changed files with 3 additions and 3 deletions

View File

@@ -10,12 +10,12 @@ namespace Stary.Evo.UIFarme
/// <summary>
/// UI的入栈操作此操作会显示一个面板
/// </summary>
Task PushQueue<T>(Transform parent,string packageName=null) where T : IBasePanel, new();
Task PushQueue<T>(Transform parent=null,string packageName=null) where T : IBasePanel, new();
/// <summary>
/// UI的入栈操作此操作会显示一个面板
/// </summary>
Task PushStack<T>(Transform parent,string packageName=null) where T : IBasePanel, new();
Task PushStack<T>(Transform parent=null,string packageName=null) where T : IBasePanel, new();
/// <summary>
/// 执行面板的出栈操作此操作会执行面板的OnExit方法