UI系统组件

This commit is contained in:
2026-06-06 09:00:11 +08:00
parent fe4fd60083
commit d794b83ebe
107 changed files with 25690 additions and 476 deletions

View File

@@ -0,0 +1,11 @@
namespace BaseGames.UI
{
/// <summary>
/// 通用面板:<see cref="UIPanelBase"/> 的最简具体实现,无额外逻辑。
/// 用作脚手架生成的 themed 面板根(带 CanvasGroup 淡入 + 默认焦点 + 订阅清理),
/// 适合不需要自定义控制器的简单弹窗 / 容器。需要业务逻辑时改挂自定义 <see cref="UIPanelBase"/> 子类。
/// </summary>
public sealed class UISimplePanel : UIPanelBase
{
}
}