diff options
author | George Marques <george@gmarqu.es> | 2022-04-06 14:14:38 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2022-04-06 14:14:38 -0300 |
commit | 4710e2b278bfaa60cfcd3158e2d23e8e9a901e1f (patch) | |
tree | dbfc53c463cddaa80c6098cb49103e21f1e7f140 /modules/gdscript/gdscript.cpp | |
parent | e4f0fc50f79336cf76beec40e5e8e5164b288714 (diff) | |
download | redot-engine-4710e2b278bfaa60cfcd3158e2d23e8e9a901e1f.tar.gz |
GDScript: Add support for static method calls in native types
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index 3a0e320e9b..6c7d5cc3e1 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -92,6 +92,21 @@ Object *GDScriptNativeClass::instantiate() { return ClassDB::instantiate(name); } +Variant GDScriptNativeClass::callp(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) { + if (p_method == SNAME("new")) { + // Constructor. + return Object::callp(p_method, p_args, p_argcount, r_error); + } + MethodBind *method = ClassDB::get_method(name, p_method); + if (method) { + // Native static method. + return method->call(nullptr, p_args, p_argcount, r_error); + } + + r_error.error = Callable::CallError::CALL_ERROR_INVALID_METHOD; + return Variant(); +} + GDScriptFunction *GDScript::_super_constructor(GDScript *p_script) { if (p_script->initializer) { return p_script->initializer; |