Editor object alignment.

Hi there!

I really want to know how to alignment all objects of editor window to the top?
I had created my custom editor window for my custom objects and I have EditorGUILayout.BeginHorizontal(“”) in my custom editor

But it keep stay in a middle of screen, not stay at top…
such as if I have 1 Button + EditorGUILayout.BeginHorizontal(“”)
in the window, it always stay in the middle of windows not to the top.
I don’t know why…

Anyone has any idea?

Thanks!!!

Oh I know that!!!
I have to change
EditorGUILayout.BeginHorizontal()
to
EditorGUILayout.BeginHorizontal(“”)

just remove “” to empty

it will fix this issue!!!