How to apply skins to GUILayouts

Hi guys,

Any idea how to create a different design for an editor component such as button for custom inspector?

E.g I want to make my buttons look “flat”.

Thanks in advance :slight_smile:

There’s an overload for the Button method that takes in a GUIStyle: Unity - Scripting API: GUILayout.Button

You can create your own GUIStyle object and pass that into the button method (Unity - Scripting API: GUIStyle)