I’m creating a custom editor for scriptable object data. I managed to get everything working, however, when I expand the fields of one object, some variable names are too long to fit. I would like to somehow move these input fields a bit to the right so “ReallyLongParamName” and similar can fit. This can get quite messy if I have nested variables as variable names get indented and input fields stay in line. At a certain depth, I can’t even read the name of the variable.
I’m drawing a single field with the simple:
EditorGUI.PropertyField(fieldRect, property, label, true);