cleaning up inspector for variables

hey,
i have a script that is going to require a LOT LOT of variables with transforms

of course i could name and carefully read my variable names, but is there a better way to clean it up?

is there a way to add a line or something between variables?
for example

chair
C_par
C_child

table
T_par
T_child

sofa
S_par
S_child

any idea? let me know if you need a better explanation

thanks

You could use arrays, Or create a class, Or Use Vector3 || Vector2 to group Objects and parameters. That cleans up the inspector pretty good. You can take the parent of each group and give it a line in the name (ie) myParent_0A_____________________ and that may help help you spot what you need faster.

hm, the line is actually good enuff for what i need, nothing fancy 8) thanks for the input!