Allow to ignore debugger error breaks
This commit is contained in:
parent
74907876d3
commit
7d82704f12
11 changed files with 84 additions and 14 deletions
|
|
@ -136,6 +136,10 @@ Error EditorRun::run(const String &p_scene, const String &p_write_movie, const V
|
|||
args.push_back("--skip-breakpoints");
|
||||
}
|
||||
|
||||
if (EditorDebuggerNode::get_singleton()->is_ignore_error_breaks()) {
|
||||
args.push_back("--ignore-error-breaks");
|
||||
}
|
||||
|
||||
if (!p_scene.is_empty()) {
|
||||
args.push_back(p_scene);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue