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

13 lines
359 B
C#

using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property |
AttributeTargets.Class | AttributeTargets.Struct)]
[Conditional("UNITY_EDITOR")]
public class InlinePropertyAttribute : Attribute
{
public float LabelWidth { get; set; }
}
}