From ed0b3c08e15ee6345ece4b135a5e99870a8fc79f Mon Sep 17 00:00:00 2001 From: Danil Alexeev Date: Wed, 4 Oct 2023 07:54:03 +0300 Subject: Core: Fix `Object::has_method()` for script static methods --- core/object/script_language_extension.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'core/object/script_language_extension.cpp') diff --git a/core/object/script_language_extension.cpp b/core/object/script_language_extension.cpp index ce1109781a..a07bf63a02 100644 --- a/core/object/script_language_extension.cpp +++ b/core/object/script_language_extension.cpp @@ -55,6 +55,7 @@ void ScriptExtension::_bind_methods() { GDVIRTUAL_BIND(_get_class_icon_path); GDVIRTUAL_BIND(_has_method, "method"); + GDVIRTUAL_BIND(_has_static_method, "method"); GDVIRTUAL_BIND(_get_method_info, "method"); GDVIRTUAL_BIND(_is_tool); -- cgit v1.2.3