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

Method has_method

modules/gdscript/gdscript.cpp:367–369  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365}
366
367bool GDScript::has_method(const StringName &p_method) const {
368 return member_functions.has(p_method);
369}
370
371bool GDScript::has_static_method(const StringName &p_method) const {
372 return member_functions.has(p_method) && member_functions[p_method]->is_static();

Callers 6

_convert_scene_nodeMethod · 0.45
is_any_node_invisibleFunction · 0.45
_list_call_argumentsFunction · 0.45

Calls 3

hasMethod · 0.45
ptrMethod · 0.45
findMethod · 0.45

Tested by

no test coverage detected