1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Merge pull request #68481 from dalexeev/gds-fix-dyn-arg-def-val

GDScript 2.0: Fix shift due to skip of non-constant default argument values
This commit is contained in:
Rémi Verschelde
2022-12-01 18:09:25 +01:00

View File

@@ -1162,6 +1162,8 @@ void GDScriptAnalyzer::resolve_function_signature(GDScriptParser::FunctionNode *
if (p_function->parameters[i]->default_value->is_constant) {
p_function->default_arg_values.push_back(p_function->parameters[i]->default_value->reduced_value);
} else {
p_function->default_arg_values.push_back(Variant()); // Prevent shift.
}
}
#endif // TOOLS_ENABLED