Title
Adds a Title, optional Subtitle and Divider to a Property.

[Title("Title", marginDown: 0, propertySeparation: 0)]
public int titleWithDivider;
[Title("Title with subtitle", "This is a subtitle")]
public int titleWithSubtitle;
[Title("Title without divider", divider: false)]
public int titleWithoutDivider;[Title(string title, string subtitle, bool divider, float marginTop,
float marginDown, float propertySeparation)]title: Title Label
subtitle: Subtitle Label
divider: Enables a divider
marginTop: Adds Space on top of the Title
marginDown: Adds Space below the Title
propertySeparation: Separation Between the Title and the Property
Last updated