Show correct icons in EditorDebuggerRemoteObject
This commit is contained in:
@ -30,6 +30,7 @@
|
|||||||
|
|
||||||
#include "editor_object_selector.h"
|
#include "editor_object_selector.h"
|
||||||
|
|
||||||
|
#include "editor/debugger/editor_debugger_inspector.h"
|
||||||
#include "editor/editor_data.h"
|
#include "editor/editor_data.h"
|
||||||
#include "editor/editor_node.h"
|
#include "editor/editor_node.h"
|
||||||
#include "editor/editor_string_names.h"
|
#include "editor/editor_string_names.h"
|
||||||
@ -131,6 +132,19 @@ void EditorObjectSelector::update_path() {
|
|||||||
Ref<Texture2D> obj_icon;
|
Ref<Texture2D> obj_icon;
|
||||||
if (Object::cast_to<MultiNodeEdit>(obj)) {
|
if (Object::cast_to<MultiNodeEdit>(obj)) {
|
||||||
obj_icon = EditorNode::get_singleton()->get_class_icon(Object::cast_to<MultiNodeEdit>(obj)->get_edited_class_name());
|
obj_icon = EditorNode::get_singleton()->get_class_icon(Object::cast_to<MultiNodeEdit>(obj)->get_edited_class_name());
|
||||||
|
} else if (Object::cast_to<EditorDebuggerRemoteObject>(obj)) {
|
||||||
|
String class_name;
|
||||||
|
Ref<Script> base_script = obj->get_script();
|
||||||
|
if (base_script.is_valid()) {
|
||||||
|
class_name = base_script->get_global_name();
|
||||||
|
|
||||||
|
if (class_name.is_empty()) {
|
||||||
|
// If there is no class_name in this script we just take the script path.
|
||||||
|
class_name = base_script->get_path();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
obj_icon = EditorNode::get_singleton()->get_class_icon(class_name.is_empty() ? Object::cast_to<EditorDebuggerRemoteObject>(obj)->type_name : class_name);
|
||||||
} else {
|
} else {
|
||||||
obj_icon = EditorNode::get_singleton()->get_object_icon(obj);
|
obj_icon = EditorNode::get_singleton()->get_object_icon(obj);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user