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

Method _methods_changed

editor/debugger/editor_debugger_node.cpp:813–820  ·  view source on GitHub ↗

Remote inspector/edit.

Source from the content-addressed store, hash-verified

811
812// Remote inspector/edit.
813void EditorDebuggerNode::_methods_changed(void *p_ud, Object *p_base, const StringName &p_name, const Variant **p_args, int p_argcount) {
814 if (!singleton) {
815 return;
816 }
817 _for_all(singleton->tabs, [&](ScriptEditorDebugger *dbg) {
818 dbg->_method_changed(p_base, p_name, p_args, p_argcount);
819 });
820}
821
822void EditorDebuggerNode::_properties_changed(void *p_ud, Object *p_base, const StringName &p_property, const Variant &p_value) {
823 if (!singleton) {

Callers

nothing calls this directly

Calls 2

_for_allFunction · 0.85
_method_changedMethod · 0.80

Tested by

no test coverage detected