浏览代码

Merge pull request #22517 from DualMatrix/debugging_the_debugger_2

Fixed Objects do not showing their drop down in debugger.
Rémi Verschelde 7 年之前
父节点
当前提交
dea0f69296
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      editor/script_editor_debugger.cpp

+ 4 - 0
editor/script_editor_debugger.cpp

@@ -30,6 +30,7 @@
 
 #include "script_editor_debugger.h"
 
+#include "core/io/marshalls.h"
 #include "core/project_settings.h"
 #include "core/ustring.h"
 #include "editor_node.h"
@@ -577,6 +578,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
 
 			if (v.get_type() == Variant::OBJECT) {
 				h = PROPERTY_HINT_OBJECT_ID;
+				v = ObjectDB::get_instance(Object::cast_to<EncodedObjectAsID>(v)->get_object_id());
 				String s = v;
 				s = s.replace("[", "");
 				hs = s.get_slice(":", 0);
@@ -598,6 +600,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
 
 			if (v.get_type() == Variant::OBJECT) {
 				h = PROPERTY_HINT_OBJECT_ID;
+				v = ObjectDB::get_instance(Object::cast_to<EncodedObjectAsID>(v)->get_object_id());
 				String s = v;
 				s = s.replace("[", "");
 				hs = s.get_slice(":", 0);
@@ -619,6 +622,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
 
 			if (v.get_type() == Variant::OBJECT) {
 				h = PROPERTY_HINT_OBJECT_ID;
+				v = ObjectDB::get_instance(Object::cast_to<EncodedObjectAsID>(v)->get_object_id());
 				String s = v;
 				s = s.replace("[", "");
 				hs = s.get_slice(":", 0);