Merge pull request #54118 from Pineapple/dont-ignore-type-mismatch-in-setter-master
This commit is contained in:
commit
78ed2c05a2
1 changed files with 2 additions and 0 deletions
|
@ -1257,6 +1257,8 @@ bool GDScriptInstance::set(const StringName &p_name, const Variant &p_value) {
|
|||
call(member->setter, &val, 1, err);
|
||||
if (err.error == Callable::CallError::CALL_OK) {
|
||||
return true; //function exists, call was successful
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (member->data_type.has_type) {
|
||||
|
|
Loading…
Reference in a new issue