diff options
author | rune-scape <spartacrafter@gmail.com> | 2024-09-21 21:56:11 -0700 |
---|---|---|
committer | rune-scape <spartacrafter@gmail.com> | 2024-09-23 10:56:53 -0700 |
commit | d3ad99d3d1adbb08649b41fc1d07425a5f2fd79b (patch) | |
tree | 57e69aa18f3212f085f7c6b5f9b47e3885310656 /modules/gdscript/gdscript.cpp | |
parent | e4e024ab88efe74677769395886bc1b09eccbac7 (diff) | |
download | redot-engine-d3ad99d3d1adbb08649b41fc1d07425a5f2fd79b.tar.gz |
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 7b9aa70686..6979373ad3 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() { |