Description
The HeaderColor
field in the Editor.InspectorHeader
class is a static, public field of type Color
. It is used to define the color of the header in the inspector UI within the editor environment. Being static, it applies globally across all instances of InspectorHeader
.
Usage
To use the HeaderColor
field, you can directly access it through the InspectorHeader
class since it is a static field. You can set or get the color value to customize the appearance of the inspector header.
Example
// Example of setting the HeaderColor field
Editor.InspectorHeader.HeaderColor = new Color(0.5f, 0.5f, 0.5f, 1.0f); // Sets the header color to a medium gray
// Example of getting the HeaderColor field
Color currentHeaderColor = Editor.InspectorHeader.HeaderColor;
// Use currentHeaderColor as needed