mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +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:
commit
13f0ab88f2
15 changed files with 429 additions and 305 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue