Add missing virtual bind for `ScriptExtension::_get_global_name`
This commit is contained in:
parent
aa6ec76317
commit
0a58025e40
|
@ -36,6 +36,7 @@ void ScriptExtension::_bind_methods() {
|
|||
|
||||
GDVIRTUAL_BIND(_can_instantiate);
|
||||
GDVIRTUAL_BIND(_get_base_script);
|
||||
GDVIRTUAL_BIND(_get_global_name);
|
||||
GDVIRTUAL_BIND(_inherits_script, "script");
|
||||
|
||||
GDVIRTUAL_BIND(_get_instance_base_type);
|
||||
|
|
|
@ -32,6 +32,11 @@
|
|||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="_get_global_name" qualifiers="virtual const">
|
||||
<return type="StringName" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="_get_instance_base_type" qualifiers="virtual const">
|
||||
<return type="StringName" />
|
||||
<description>
|
||||
|
|
Loading…
Reference in New Issue