스타일 가이드 수정 중

This commit is contained in:
logonkhi
2026-01-23 19:04:12 +09:00
parent 59d473c87b
commit 99f9c3b26d
86 changed files with 3013 additions and 1795 deletions

View File

@@ -54,10 +54,10 @@ namespace UVC.UIToolkit
///
/// <!-- 커스텀 축 라벨 -->
/// <utk:UTKVector3Field label="크기"
/// XLabel="Width" YLabel="Height" ZLabel="Depth" />
/// x-label="Width" y-label="Height" z-label="Depth" />
///
/// <!-- 비활성화 상태 -->
/// <utk:UTKVector3Field label="읽기 전용" IsEnabled="false" />
/// <utk:UTKVector3Field label="읽기 전용" is-enabled="false" />
/// ]]></code>
/// <para><b>실제 활용 예시 (Transform 편집기):</b></para>
/// <code>
@@ -104,7 +104,7 @@ namespace UVC.UIToolkit
}
/// <summary>활성화 상태</summary>
[UxmlAttribute]
[UxmlAttribute("is-enabled")]
public bool IsEnabled
{
get => _isEnabled;
@@ -117,7 +117,7 @@ namespace UVC.UIToolkit
}
/// <summary>X축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("x-label")]
public string XLabel
{
get => _xLabel;
@@ -129,7 +129,7 @@ namespace UVC.UIToolkit
}
/// <summary>Y축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("y-label")]
public string YLabel
{
get => _yLabel;
@@ -141,7 +141,7 @@ namespace UVC.UIToolkit
}
/// <summary>Z축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("z-label")]
public string ZLabel
{
get => _zLabel;