Tri-Inspector/Runtime/Attributes/LabelWidthAttribute.cs
2023-03-12 11:38:39 +04:00

17 lines
370 B
C#

using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
[Conditional("UNITY_EDITOR")]
public class LabelWidthAttribute : Attribute
{
public float Width { get; }
public LabelWidthAttribute(float width)
{
Width = width;
}
}
}