Tri-Inspector/Runtime/Attributes/InlinePropertyAttribute.cs

13 lines
359 B
C#
Raw Normal View History

2021-12-07 10:20:36 -05:00
using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property |
AttributeTargets.Class | AttributeTargets.Struct)]
[Conditional("UNITY_EDITOR")]
2023-03-11 16:18:57 -05:00
public class InlinePropertyAttribute : Attribute
2021-12-07 10:20:36 -05:00
{
public float LabelWidth { get; set; }
}
}