1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Move Mono unhandled exception setting to be located within a subsection

Settings that aren't within a subsection are difficult to reach when
other settings do have a subsection.

This also adds documentation for the project setting.
This commit is contained in:
Hugo Locurcio
2021-11-10 17:31:54 +01:00
parent a265d9b772
commit a9a45ee7ee
3 changed files with 5 additions and 3 deletions

View File

@@ -2050,7 +2050,7 @@ bool Main::start() {
GLOBAL_DEF("mono/debugger_agent/wait_timeout", 3000);
GLOBAL_DEF("mono/profiler/args", "log:calls,alloc,sample,output=output.mlpd");
GLOBAL_DEF("mono/profiler/enabled", false);
GLOBAL_DEF("mono/unhandled_exception_policy", 0);
GLOBAL_DEF("mono/runtime/unhandled_exception_policy", 0);
#endif
DocTools doc;