arimger/Unity-Editor-Toolbox

[Feature Request]Able to remove the label line and indent from the serializable class

jinsediaoying opened this issue · 2 comments

From:
NXYUKRVJ~ T@1 GH~85%SBY
To:
VETTX1KAAMECC5A0C M C
This will be very convenient for drawing list items and organize codes.

Sure, added to my TODO list.

For now, you can use [IgnoreParent] attribute to remove indentation and parent's label.

public Quaternion q1;
[Line]
[IgnoreParent]
public Quaternion q2;

par