public override string displayName {
get { return this.node.name + this.node.description; }
get {
if (this.node.showName && !string.IsNullOrEmpty(this.node.name)) {
return $"{this.node.name}{this.node.separator} {this.node.description}";
}
return this.node.description;
window.Show();
void OnEnable() {
this.titleContent = new GUIContent("UIWidgets Inspector");
void OnGUI() {
EditorGUILayout.BeginHorizontal(EditorStyles.toolbar, GUILayout.ExpandWidth(true));
this.DoSelectDropDown();