UTKToolBar 개발 완료

This commit is contained in:
logonkhi
2026-02-19 18:40:37 +09:00
parent 0333b83b57
commit 739a62eb9b
112 changed files with 7496 additions and 46 deletions

View File

@@ -0,0 +1,23 @@
#nullable enable
using UnityEngine.UIElements;
namespace UVC.UIToolkit
{
/// <summary>
/// 단순 클릭 동작의 툴바 버튼 컴포넌트입니다.
/// </summary>
[UxmlElement]
public partial class UTKToolBarStandardButton : UTKToolBarButtonBase
{
/// <summary>
/// UTKToolBarStandardButton의 새 인스턴스를 초기화합니다.
/// </summary>
public UTKToolBarStandardButton() : base()
{
_uxmlPath = "UIToolkit/ToolBar/UTKToolBarButton";
_ussPath = "UIToolkit/ToolBar/UTKToolBarButtonUss";
CreateUI();
}
}
}