mirror of
https://github.com/godotengine/godot.git
synced 2025-01-30 21:33:18 +08:00
Merge pull request #64511 from derammo/derammo_fix_has_property_default_value
This commit is contained in:
commit
14f8a54a33
@ -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 New Issue
Block a user