Merge pull request #71013 from voidedWarranties/fix_ext_property_default_value
Fix `ScriptInstanceExtension::get_property_default_value` return value
This commit is contained in:
commit
0081c59198
1 changed files with 2 additions and 1 deletions
|
@ -125,7 +125,8 @@ public:
|
|||
}
|
||||
Variant ret;
|
||||
GDVIRTUAL_REQUIRED_CALL(_get_property_default_value, p_property, ret);
|
||||
return ret;
|
||||
r_value = ret;
|
||||
return true;
|
||||
}
|
||||
|
||||
EXBIND0(update_exports)
|
||||
|
|
Loading…
Reference in a new issue