You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Allow to ignore debugger error breaks
This commit is contained in:
@@ -615,6 +615,10 @@ bool EditorDebuggerNode::is_skip_breakpoints() const {
|
||||
return get_current_debugger()->is_skip_breakpoints();
|
||||
}
|
||||
|
||||
bool EditorDebuggerNode::is_ignore_error_breaks() const {
|
||||
return get_default_debugger()->is_ignore_error_breaks();
|
||||
}
|
||||
|
||||
void EditorDebuggerNode::set_breakpoint(const String &p_path, int p_line, bool p_enabled) {
|
||||
breakpoints[Breakpoint(p_path, p_line)] = p_enabled;
|
||||
_for_all(tabs, [&](ScriptEditorDebugger *dbg) {
|
||||
|
||||
Reference in New Issue
Block a user