Remote debugger send the real instance of WeakRef referenced to

This commit is contained in:
Geequlim 2018-01-23 13:01:12 +08:00
parent 511742eb68
commit 10f0451cc2
1 changed files with 7 additions and 1 deletions

View File

@ -598,7 +598,13 @@ void ScriptDebuggerRemote::_send_object_id(ObjectID p_id) {
Array send_props; Array send_props;
for (int i = 0; i < properties.size(); i++) { for (int i = 0; i < properties.size(); i++) {
const PropertyInfo &pi = properties[i].first; const PropertyInfo &pi = properties[i].first;
const Variant &var = properties[i].second; Variant &var = properties[i].second;
WeakRef *ref = Object::cast_to<WeakRef>(var);
if (ref) {
var = ref->get_ref();
}
RES res = var; RES res = var;
Array prop; Array prop;