mirror of https://github.com/godotengine/godot
Fix `ScriptInstanceExtension::get_property_default_value` return value
This commit is contained in:
parent
163f6f5fe8
commit
411719a399
|
|
@ -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 New Issue