Indent Attribute

Indent is used on any property and moves the property's label to the right. Use this to clearly organize properties in the inspector.

[Title("Nicely organize your properties.")]
[Indent]
public int A;

[Indent(2)]
public int B;

[Indent(3)]
public int C;

[Indent(4)]
public int D;

[Title("Using the Indent attribute")]
[Indent]
public int E;

[Indent(0)]
public int F;

[Indent(-1)]
public int G;