Merge pull request #64511 from derammo/derammo_fix_has_property_default_value
This commit is contained in:
commit
14f8a54a33
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);
|
||||
|
|
|
@ -96,6 +96,12 @@
|
|||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="_has_property_default_value" qualifiers="virtual const">
|
||||
<return type="bool" />
|
||||
<param index="0" name="property" type="StringName" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="_has_script_signal" qualifiers="virtual const">
|
||||
<return type="bool" />
|
||||
<param index="0" name="signal" type="StringName" />
|
||||
|
|
Loading…
Reference in a new issue