Check thread func in base scripts for argument info

This commit is contained in:
Haoyu Qiu 2022-06-27 11:24:04 +08:00 committed by Relintai
parent 11a92cfe27
commit 1d2b59b941

View File

@ -2698,12 +2698,18 @@ void _Thread::_start_func(void *ud) {
// We must check if we are in case b). // We must check if we are in case b).
int target_param_count = 0; int target_param_count = 0;
int target_default_arg_count = 0; int target_default_arg_count = 0;
Ref<Script> script = target_instance->get_script(); Ref<Script> script = target_instance->get_script();
if (script.is_valid()) { while (script.is_valid()) {
MethodInfo mi = script->get_method_info(t->target_method); if (script->has_method(t->target_method)) {
target_param_count = mi.arguments.size(); MethodInfo mi = script->get_method_info(t->target_method);
target_default_arg_count = mi.default_arguments.size(); target_param_count = mi.arguments.size();
} else { target_default_arg_count = mi.default_arguments.size();
break;
}
script = script->get_base_script();
}
if (script.is_null()) {
MethodBind *method = ClassDB::get_method(target_instance->get_class_name(), t->target_method); MethodBind *method = ClassDB::get_method(target_instance->get_class_name(), t->target_method);
if (method) { if (method) {
target_param_count = method->get_argument_count(); target_param_count = method->get_argument_count();