1
0
Fork 0

Fix `ScriptInstanceExtension::get_property_default_value` return value

This commit is contained in:
voidedWarranties 2023-01-06 19:49:20 -08:00
parent 163f6f5fe8
commit 411719a399
1 changed files with 2 additions and 1 deletions

View File

@ -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)