Remote inspector/edit.
| 811 | |
| 812 | // Remote inspector/edit. |
| 813 | void 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 | |
| 822 | void EditorDebuggerNode::_properties_changed(void *p_ud, Object *p_base, const StringName &p_property, const Variant &p_value) { |
| 823 | if (!singleton) { |
nothing calls this directly
no test coverage detected