mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 16:28:23 -05:00
13 lines
250 B
C#
13 lines
250 B
C#
|
using TriInspector;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class Styling_LabelWidthSample : ScriptableObject
|
|||
|
{
|
|||
|
public int defaultWidth;
|
|||
|
|
|||
|
[LabelWidth(40)]
|
|||
|
public int thin;
|
|||
|
|
|||
|
[LabelWidth(300)]
|
|||
|
public int customInspectorVeryLongPropertyName;
|
|||
|
}
|