- Home /
Question by
tdx110 · Jun 05 at 08:33 AM ·
c#inspectoroverlapping
Overlapping text in the inspector
I have a problem. I have written a script and create a list in the inspector. Element 0 always
other texts. All other items are already fine.

Comment
Are you using any custom PropertyAttributes / Drawers? Those could be faulty
Answer by Koyemsi · Jun 06 at 01:14 AM
That's odd.
Hard to tell without seeing your code, but I think there's a problem in your code just before you iterate through your Pooling List.
A few ideas :
a GUILayout.BeginHorizontal() or Vertical that wasn't closed
a background color that was set to Color.Clear (transparency)
Answer by tdx110 · 6 days ago
I don't use GUILayout. Only this: public ObjectPoolingList[] ObjectPoolingLists;
Your answer