Merge pull request #64812 from Life4gal/fix-issue-57506

Fix using Resource objects as keys in the `tres` format
This commit is contained in:
Rémi Verschelde 2023-01-19 13:24:02 +01:00
commit 122106c844
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -1846,6 +1846,9 @@ void ResourceFormatSaverTextInstance::_find_resources(const Variant &p_variant,
List<Variant> keys;
d.get_key_list(&keys);
for (const Variant &E : keys) {
// Of course keys should also be cached, after all we can't prevent users from using resources as keys, right?
// See also ResourceFormatSaverBinaryInstance::_find_resources (when p_variant is of type Variant::DICTIONARY)
_find_resources(E);
Variant v = d[E];
_find_resources(v);
}