mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
C#: Fix return type hint for methods.
This commit is contained in:
parent
35da70f953
commit
51c54b03d1
2 changed files with 15 additions and 0 deletions
|
@ -2365,6 +2365,8 @@ void CSharpScript::update_script_class_info(Ref<CSharpScript> p_script) {
|
|||
MethodInfo mi;
|
||||
mi.name = name;
|
||||
|
||||
mi.return_val = PropertyInfo::from_dict(method_info_dict["return_val"]);
|
||||
|
||||
Array params = method_info_dict["params"];
|
||||
|
||||
for (int j = 0; j < params.size(); j++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue