24 lines
632 B
C#
24 lines
632 B
C#
#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();
|
|
}
|
|
}
|
|
}
|