Merge pull request #33018 from Xrayez/fix-inst2dict-getters
Fix `inst2dict` calling to getters to retrieve value
This commit is contained in:
commit
df2e3e3f7f
1 changed files with 3 additions and 17 deletions
|
@ -1128,25 +1128,11 @@ void GDScriptFunctions::call(Function p_func, const Variant **p_args, int p_arg_
|
|||
d["@subpath"] = cp;
|
||||
d["@path"] = p->get_path();
|
||||
|
||||
p = base.ptr();
|
||||
|
||||
while (p) {
|
||||
|
||||
for (Set<StringName>::Element *E = p->members.front(); E; E = E->next()) {
|
||||
|
||||
Variant value;
|
||||
if (ins->get(E->get(), value)) {
|
||||
|
||||
String k = E->get();
|
||||
if (!d.has(k)) {
|
||||
d[k] = value;
|
||||
}
|
||||
}
|
||||
for (Map<StringName, GDScript::MemberInfo>::Element *E = base->member_indices.front(); E; E = E->next()) {
|
||||
if (!d.has(E->key())) {
|
||||
d[E->key()] = ins->members[E->get().index];
|
||||
}
|
||||
|
||||
p = p->_base;
|
||||
}
|
||||
|
||||
r_ret = d;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue