diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2023-10-04 07:54:03 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2023-10-04 19:44:32 +0300 |
commit | ed0b3c08e15ee6345ece4b135a5e99870a8fc79f (patch) | |
tree | ac8fe0ff0c7dcb8d10e660c631946c8a3f58a6ee /core/object/script_language_extension.h | |
parent | bfd78bb917887cfc1fd842ba23570394cad8bedb (diff) | |
download | redot-engine-ed0b3c08e15ee6345ece4b135a5e99870a8fc79f.tar.gz |
Core: Fix `Object::has_method()` for script static methods
Diffstat (limited to 'core/object/script_language_extension.h')
-rw-r--r-- | core/object/script_language_extension.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/script_language_extension.h b/core/object/script_language_extension.h index beb8064a33..89bba80b90 100644 --- a/core/object/script_language_extension.h +++ b/core/object/script_language_extension.h @@ -99,6 +99,7 @@ public: #endif // TOOLS_ENABLED EXBIND1RC(bool, has_method, const StringName &) + EXBIND1RC(bool, has_static_method, const StringName &) GDVIRTUAL1RC(Dictionary, _get_method_info, const StringName &) virtual MethodInfo get_method_info(const StringName &p_method) const override { |