Merge pull request #10903 from neikeq/fix-defval-order-definitely-i-promise

Fixes order of default arguments in MethodInfo
This commit is contained in:
Rémi Verschelde 2017-09-03 01:38:30 +02:00 committed by GitHub
commit 53e7f55a89

View File

@ -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);