| 820 | } |
| 821 | |
| 822 | void EditorDebuggerNode::_properties_changed(void *p_ud, Object *p_base, const StringName &p_property, const Variant &p_value) { |
| 823 | if (!singleton) { |
| 824 | return; |
| 825 | } |
| 826 | _for_all(singleton->tabs, [&](ScriptEditorDebugger *dbg) { |
| 827 | dbg->_property_changed(p_base, p_property, p_value); |
| 828 | }); |
| 829 | } |
| 830 | |
| 831 | // LiveDebug |
| 832 | void EditorDebuggerNode::set_live_debugging(bool p_enabled) { |
nothing calls this directly
no test coverage detected