MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / get_argument_count

Method get_argument_count

modules/gdscript/gdscript_rpc_callable.cpp:86–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86int GDScriptRPCCallable::get_argument_count(bool &r_is_valid) const {
87 return object->get_method_argument_count(method, &r_is_valid);
88}
89
90void GDScriptRPCCallable::call(const Variant **p_arguments, int p_argcount, Variant &r_return_value, Callable::CallError &r_call_error) const {
91 r_return_value = object->callp(method, p_arguments, p_argcount, r_call_error);

Callers 4

_can_use_validate_callFunction · 0.45
disassemble_functionFunction · 0.45

Calls 1

Tested by 1

disassemble_functionFunction · 0.36