Fixed debugger showing wrong name for Objects.

Fixed debugger showing wrong name for Objects.
This commit is contained in:
DualMatrix 2018-09-29 00:23:20 +02:00
parent d4df4c1475
commit 9bb65399d9

View File

@ -577,12 +577,9 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
String hs = String();
if (v.get_type() == Variant::OBJECT) {
v = Object::cast_to<EncodedObjectAsID>(v)->get_object_id();
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);
v = s.get_slice(":", 1).to_int();
hs = "Object";
}
variables->add_property("Locals/" + n, v, h, hs);
@ -599,12 +596,9 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
String hs = String();
if (v.get_type() == Variant::OBJECT) {
v = Object::cast_to<EncodedObjectAsID>(v)->get_object_id();
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);
v = s.get_slice(":", 1).to_int();
hs = "Object";
}
variables->add_property("Members/" + n, v, h, hs);
@ -621,12 +615,9 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
String hs = String();
if (v.get_type() == Variant::OBJECT) {
v = Object::cast_to<EncodedObjectAsID>(v)->get_object_id();
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);
v = s.get_slice(":", 1).to_int();
hs = "Object";
}
variables->add_property("Globals/" + n, v, h, hs);