Merge pull request #92457 from YeldhamDev/extreme_corner_case_but_still
Set `doc_name` even when categories are hidden in the inspector
This commit is contained in:
commit
21810cad38
2 changed files with 37 additions and 29 deletions
|
@ -37,7 +37,7 @@
|
||||||
#include "core/object/script_language.h"
|
#include "core/object/script_language.h"
|
||||||
#include "core/os/keyboard.h"
|
#include "core/os/keyboard.h"
|
||||||
#include "core/string/string_builder.h"
|
#include "core/string/string_builder.h"
|
||||||
#include "core/version.h"
|
#include "core/version_generated.gen.h"
|
||||||
#include "editor/doc_data_compressed.gen.h"
|
#include "editor/doc_data_compressed.gen.h"
|
||||||
#include "editor/editor_node.h"
|
#include "editor/editor_node.h"
|
||||||
#include "editor/editor_paths.h"
|
#include "editor/editor_paths.h"
|
||||||
|
@ -3383,6 +3383,7 @@ EditorHelpBit::HelpData EditorHelpBit::_get_theme_item_help_data(const StringNam
|
||||||
if (theme_item.name == p_theme_item_name) {
|
if (theme_item.name == p_theme_item_name) {
|
||||||
result = current;
|
result = current;
|
||||||
found = true;
|
found = true;
|
||||||
|
|
||||||
if (!is_native) {
|
if (!is_native) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2869,15 +2869,6 @@ void EditorInspector::update_tree() {
|
||||||
// Otherwise the category was probably added via `@export_category` or `_get_property_list()`.
|
// Otherwise the category was probably added via `@export_category` or `_get_property_list()`.
|
||||||
const bool is_custom_category = p.hint_string.is_empty();
|
const bool is_custom_category = p.hint_string.is_empty();
|
||||||
|
|
||||||
if ((is_custom_category && !show_custom_categories) || (!is_custom_category && !show_standard_categories)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Hide the "MultiNodeEdit" category for MultiNodeEdit.
|
|
||||||
if (Object::cast_to<MultiNodeEdit>(object) && p.name == "MultiNodeEdit") {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Iterate over remaining properties. If no properties in category, skip the category.
|
// Iterate over remaining properties. If no properties in category, skip the category.
|
||||||
List<PropertyInfo>::Element *N = E_property->next();
|
List<PropertyInfo>::Element *N = E_property->next();
|
||||||
bool valid = true;
|
bool valid = true;
|
||||||
|
@ -2898,22 +2889,20 @@ void EditorInspector::update_tree() {
|
||||||
continue; // Empty, ignore it.
|
continue; // Empty, ignore it.
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create an EditorInspectorCategory and add it to the inspector.
|
String category_label;
|
||||||
EditorInspectorCategory *category = memnew(EditorInspectorCategory);
|
String category_tooltip;
|
||||||
main_vbox->add_child(category);
|
Ref<Texture> category_icon;
|
||||||
category_vbox = nullptr; //reset
|
|
||||||
|
|
||||||
// Do not add an icon, do not change the current class (`doc_name`) for custom categories.
|
// Do not add an icon, do not change the current class (`doc_name`) for custom categories.
|
||||||
if (is_custom_category) {
|
if (is_custom_category) {
|
||||||
category->label = p.name;
|
category_label = p.name;
|
||||||
category->set_tooltip_text(p.name);
|
category_tooltip = p.name;
|
||||||
} else {
|
} else {
|
||||||
String type = p.name;
|
|
||||||
String label = p.name;
|
|
||||||
doc_name = p.name;
|
doc_name = p.name;
|
||||||
|
category_label = p.name;
|
||||||
|
|
||||||
// Use category's owner script to update some of its information.
|
// Use category's owner script to update some of its information.
|
||||||
if (!EditorNode::get_editor_data().is_type_recognized(type) && ResourceLoader::exists(p.hint_string)) {
|
if (!EditorNode::get_editor_data().is_type_recognized(p.name) && ResourceLoader::exists(p.hint_string)) {
|
||||||
Ref<Script> scr = ResourceLoader::load(p.hint_string, "Script");
|
Ref<Script> scr = ResourceLoader::load(p.hint_string, "Script");
|
||||||
if (scr.is_valid()) {
|
if (scr.is_valid()) {
|
||||||
StringName script_name = EditorNode::get_editor_data().script_class_get_name(scr->get_path());
|
StringName script_name = EditorNode::get_editor_data().script_class_get_name(scr->get_path());
|
||||||
|
@ -2926,32 +2915,50 @@ void EditorInspector::update_tree() {
|
||||||
doc_name = docs[docs.size() - 1].name;
|
doc_name = docs[docs.size() - 1].name;
|
||||||
}
|
}
|
||||||
if (script_name != StringName()) {
|
if (script_name != StringName()) {
|
||||||
label = script_name;
|
category_label = script_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find the icon corresponding to the script.
|
// Find the icon corresponding to the script.
|
||||||
if (script_name != StringName()) {
|
if (script_name != StringName()) {
|
||||||
category->icon = EditorNode::get_singleton()->get_class_icon(script_name);
|
category_icon = EditorNode::get_singleton()->get_class_icon(script_name);
|
||||||
} else {
|
} else {
|
||||||
category->icon = EditorNode::get_singleton()->get_object_icon(scr.ptr(), "Object");
|
category_icon = EditorNode::get_singleton()->get_object_icon(scr.ptr(), "Object");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (category->icon.is_null() && !type.is_empty()) {
|
if (category_icon.is_null() && !p.name.is_empty()) {
|
||||||
category->icon = EditorNode::get_singleton()->get_class_icon(type);
|
category_icon = EditorNode::get_singleton()->get_class_icon(p.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the category label.
|
|
||||||
category->label = label;
|
|
||||||
category->doc_class_name = doc_name;
|
|
||||||
|
|
||||||
if (use_doc_hints) {
|
if (use_doc_hints) {
|
||||||
// `|` separators used in `EditorHelpBit`.
|
// `|` separators used in `EditorHelpBit`.
|
||||||
category->set_tooltip_text("class|" + doc_name + "|");
|
category_tooltip = "class|" + doc_name + "|";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((is_custom_category && !show_custom_categories) || (!is_custom_category && !show_standard_categories)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Hide the "MultiNodeEdit" category for MultiNodeEdit.
|
||||||
|
if (Object::cast_to<MultiNodeEdit>(object) && p.name == "MultiNodeEdit") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create an EditorInspectorCategory and add it to the inspector.
|
||||||
|
EditorInspectorCategory *category = memnew(EditorInspectorCategory);
|
||||||
|
main_vbox->add_child(category);
|
||||||
|
category_vbox = nullptr; // Reset.
|
||||||
|
|
||||||
|
// Set the category info.
|
||||||
|
category->label = category_label;
|
||||||
|
category->set_tooltip_text(category_tooltip);
|
||||||
|
category->icon = category_icon;
|
||||||
|
if (!is_custom_category) {
|
||||||
|
category->doc_class_name = doc_name;
|
||||||
|
}
|
||||||
|
|
||||||
// Add editors at the start of a category.
|
// Add editors at the start of a category.
|
||||||
for (Ref<EditorInspectorPlugin> &ped : valid_plugins) {
|
for (Ref<EditorInspectorPlugin> &ped : valid_plugins) {
|
||||||
ped->parse_category(object, p.name);
|
ped->parse_category(object, p.name);
|
||||||
|
|
Loading…
Reference in a new issue