I have a scriptable object that holds a list of 200 items. Before adding any sort of custom editor to the scriptable object, the inspector looks like this
Now simply adding an empty custom editor to the script, it causes the inspector to render like this
The list editor no longer has a scroll bar and instead the full list renders in the inspector. Which causes quite a bit of lag for a 200 item list.
My custom editor is empty like so
public override async void OnInspectorGUI()
{
base.OnInspectorGUI();
}


That's weird. Does the same thing happen if you don't override OnInspectorGUI at all?
– Pangamini@Pangamini no. Nothing shows if it is not overridden.
– nickhudson2244