You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0 is the default for functions that don't specify type so we can't discern if a return type is set to void or if there is none at all.
currently we're dropping the type in those cases.
staticfunc get_return_type_string(return_data:Dictionary)->String:
if return_data.type ==0:return""
from get_script_method_list(), the .return is the same
0 is the default for functions that don't specify type so we can't discern if a return type is set to void or if there is none at all.
currently we're dropping the type in those cases.
from
get_script_method_list()
, the.return
is the samethe only way to know is to check if the method string contains
-> void
The text was updated successfully, but these errors were encountered: