1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #81079 from dalexeev/gds-fix-get-method-list

GDScript: Fix `get_*_list()` methods return incorrect info
This commit is contained in:
Rémi Verschelde
2023-09-11 15:36:52 +02:00
15 changed files with 429 additions and 305 deletions

View File

@@ -279,7 +279,7 @@ struct GDScriptUtilityFunctionsDefinitions {
Vector<StringName> sname;
while (p->_owner) {
sname.push_back(p->name);
sname.push_back(p->local_name);
p = p->_owner;
}
sname.reverse();