mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
added missing virtual to ScriptExtension
_has_property_default_value is a required virtual for ScriptExtension but it was not bound, and could therefore not be implemented this made it impossible to implement a ScriptExtension that runs
This commit is contained in:
parent
5119d0d974
commit
320fb492b0
2 changed files with 7 additions and 0 deletions
|
@ -62,6 +62,7 @@ void ScriptExtension::_bind_methods() {
|
|||
GDVIRTUAL_BIND(_has_script_signal, "signal");
|
||||
GDVIRTUAL_BIND(_get_script_signal_list);
|
||||
|
||||
GDVIRTUAL_BIND(_has_property_default_value, "property");
|
||||
GDVIRTUAL_BIND(_get_property_default_value, "property");
|
||||
|
||||
GDVIRTUAL_BIND(_update_exports);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue