스타일 가이드 수정 중

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

@@ -102,7 +102,7 @@ namespace UVC.UIToolkit
#region Properties
/// <summary>활성화 상태</summary>
[UxmlAttribute]
[UxmlAttribute("is-enabled")]
public bool IsEnabled
{
get => _isEnabled;
@@ -122,7 +122,7 @@ namespace UVC.UIToolkit
}
/// <summary>Center 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("center-label")]
public string CenterLabel
{
get => _centerLabel;
@@ -134,7 +134,7 @@ namespace UVC.UIToolkit
}
/// <summary>Extents 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("extents-label")]
public string ExtentsLabel
{
get => _extentsLabel;
@@ -146,7 +146,7 @@ namespace UVC.UIToolkit
}
/// <summary>X축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("x-label")]
public string XLabel
{
get => _xLabel;
@@ -158,7 +158,7 @@ namespace UVC.UIToolkit
}
/// <summary>Y축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("y-label")]
public string YLabel
{
get => _yLabel;
@@ -170,7 +170,7 @@ namespace UVC.UIToolkit
}
/// <summary>Z축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("z-label")]
public string ZLabel
{
get => _zLabel;

View File

@@ -37,7 +37,7 @@ namespace UVC.UIToolkit
/// <utk:UTKInputField label="이름" />
///
/// <!-- 플레이스홀더 -->
/// <utk:UTKInputField label="이메일" Placeholder="example@email.com" />
/// <utk:UTKInputField label="이메일" placeholder="example@email.com" />
///
/// <!-- 비밀번호 필드 -->
/// <utk:UTKInputField label="비밀번호" is-password-field="true" />
@@ -46,7 +46,7 @@ namespace UVC.UIToolkit
/// <utk:UTKInputField label="설명" multiline="true" />
///
/// <!-- 비활성화 -->
/// <utk:UTKInputField label="읽기전용" IsEnabled="false" value="수정 불가" />
/// <utk:UTKInputField label="읽기전용" is-enabled="false" value="수정 불가" />
/// </ui:UXML>
/// </code>
/// </example>

View File

@@ -49,11 +49,11 @@ namespace UVC.UIToolkit
///
/// <!-- 커스텀 라벨 -->
/// <utk:UTKRectField label="스프라이트 영역"
/// XLabel="Left" YLabel="Top"
/// WLabel="W" HLabel="H" />
/// x-label="Left" y-label="Top"
/// w-label="W" h-label="H" />
///
/// <!-- 비활성화 상태 -->
/// <utk:UTKRectField label="읽기 전용" IsEnabled="false" />
/// <utk:UTKRectField label="읽기 전용" is-enabled="false" />
/// ]]></code>
/// <para><b>실제 활용 예시 (스프라이트 영역 편집):</b></para>
/// <code>
@@ -89,7 +89,7 @@ namespace UVC.UIToolkit
#region Properties
/// <summary>활성화 상태</summary>
[UxmlAttribute]
[UxmlAttribute("is-enabled")]
public bool IsEnabled
{
get => _isEnabled;
@@ -109,7 +109,7 @@ namespace UVC.UIToolkit
}
/// <summary>X 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("x-label")]
public string XLabel
{
get => _xLabel;
@@ -121,7 +121,7 @@ namespace UVC.UIToolkit
}
/// <summary>Y 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("y-label")]
public string YLabel
{
get => _yLabel;
@@ -133,7 +133,7 @@ namespace UVC.UIToolkit
}
/// <summary>W 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("w-label")]
public string WLabel
{
get => _wLabel;
@@ -145,7 +145,7 @@ namespace UVC.UIToolkit
}
/// <summary>H 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("h-label")]
public string HLabel
{
get => _hLabel;

View File

@@ -97,7 +97,7 @@ namespace UVC.UIToolkit
}
/// <summary>활성화 상태</summary>
[UxmlAttribute]
[UxmlAttribute("is-enabled")]
public bool IsEnabled
{
get => _isEnabled;
@@ -110,7 +110,7 @@ namespace UVC.UIToolkit
}
/// <summary>X축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("x-label")]
public string XLabel
{
get => _xLabel;
@@ -122,7 +122,7 @@ namespace UVC.UIToolkit
}
/// <summary>Y축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("y-label")]
public string YLabel
{
get => _yLabel;

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;

View File

@@ -95,7 +95,7 @@ namespace UVC.UIToolkit
#region Properties
/// <summary>활성화 상태</summary>
[UxmlAttribute]
[UxmlAttribute("is-enabled")]
public bool IsEnabled
{
get => _isEnabled;
@@ -115,7 +115,7 @@ namespace UVC.UIToolkit
}
/// <summary>X축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("x-label")]
public string XLabel
{
get => _xLabel;
@@ -127,7 +127,7 @@ namespace UVC.UIToolkit
}
/// <summary>Y축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("y-label")]
public string YLabel
{
get => _yLabel;
@@ -139,7 +139,7 @@ namespace UVC.UIToolkit
}
/// <summary>Z축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("z-label")]
public string ZLabel
{
get => _zLabel;
@@ -151,7 +151,7 @@ namespace UVC.UIToolkit
}
/// <summary>W축 라벨</summary>
[UxmlAttribute]
[UxmlAttribute("w-label")]
public string WLabel
{
get => _wLabel;