diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-10-24 13:23:01 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-10-24 13:23:01 -0500 |
commit | 7444da766aea5f57499b270db13731d9c099d126 (patch) | |
tree | 9fe11d8dabdf5098c8db34dc70ebe4929e5fd80d /modules/gdscript/gdscript.cpp | |
parent | cfc05c5e0f95bbe2ef119bc1466464e4b7733609 (diff) | |
parent | d3ad99d3d1adbb08649b41fc1d07425a5f2fd79b (diff) | |
download | redot-engine-7444da766aea5f57499b270db13731d9c099d126.tar.gz |
Merge pull request #97374 from rune-scape/get-native-static-callable
GDScriptNativeClass: Allow getting static function as callable
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index 18f2ccc455..3c6e36f963 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -76,9 +76,16 @@ bool GDScriptNativeClass::_get(const StringName &p_name, Variant &r_ret) const { if (ok) { r_ret = v; return true; - } else { - return false; } + + MethodBind *method = ClassDB::get_method(name, p_name); + if (method && method->is_static()) { + // Native static method. + r_ret = Callable(this, p_name); + return true; + } + + return false; } void GDScriptNativeClass::_bind_methods() { |