You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Added info about operator after bespoke error message.
This commit is contained in:
@@ -340,6 +340,7 @@ Variant GDFunction::call(GDInstance *p_instance, const Variant **p_args, int p_a
|
|||||||
if (dst->get_type()==Variant::STRING) {
|
if (dst->get_type()==Variant::STRING) {
|
||||||
//return a string when invalid with the error
|
//return a string when invalid with the error
|
||||||
err_text=*dst;
|
err_text=*dst;
|
||||||
|
err_text += " in operator '"+Variant::get_operator_name(op)+"'.";
|
||||||
} else {
|
} else {
|
||||||
err_text="Invalid operands '"+Variant::get_type_name(a->get_type())+"' and '"+Variant::get_type_name(b->get_type())+"' in operator '"+Variant::get_operator_name(op)+"'.";
|
err_text="Invalid operands '"+Variant::get_type_name(a->get_type())+"' and '"+Variant::get_type_name(b->get_type())+"' in operator '"+Variant::get_operator_name(op)+"'.";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user