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

Method get_method_info

modules/gdscript/gdscript.cpp:390–397  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

388}
389
390MethodInfo GDScript::get_method_info(const StringName &p_method) const {
391 HashMap<StringName, GDScriptFunction *>::ConstIterator E = member_functions.find(p_method);
392 if (!E) {
393 return MethodInfo();
394 }
395
396 return E->value->get_method_info();
397}
398
399bool GDScript::get_property_default_value(const StringName &p_property, Variant &r_value) const {
400#ifdef TOOLS_ENABLED

Callers 7

get_method_listMethod · 0.45
_list_call_argumentsFunction · 0.45
disassemble_functionFunction · 0.45

Calls 2

MethodInfoClass · 0.50
findMethod · 0.45

Tested by 1

disassemble_functionFunction · 0.36