Merge pull request #10903 from neikeq/fix-defval-order-definitely-i-promise
Fixes order of default arguments in MethodInfo
This commit is contained in:
commit
53e7f55a89
1 changed files with 3 additions and 5 deletions
|
@ -536,11 +536,9 @@ void ClassDB::get_method_list(StringName p_class, List<MethodInfo> *p_methods, b
|
|||
minfo.return_val = method->get_return_info();
|
||||
minfo.flags = method->get_hint_flags();
|
||||
|
||||
int defval_count = method->get_default_argument_count();
|
||||
minfo.default_arguments.resize(defval_count);
|
||||
|
||||
for (int i = 0; i < defval_count; i++) {
|
||||
minfo.default_arguments[i] = method->get_default_argument(defval_count - i - 1);
|
||||
for (int i = 0; i < method->get_argument_count(); i++) {
|
||||
if (method->has_default_argument(i))
|
||||
minfo.default_arguments.push_back(method->get_default_argument(i));
|
||||
}
|
||||
|
||||
p_methods->push_back(minfo);
|
||||
|
|
Loading…
Reference in a new issue