mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Overhaul CLI argument forwarding to processes started by the editor
This commit is contained in:
parent
f2a6168414
commit
e886d662ec
8 changed files with 58 additions and 38 deletions
|
|
@ -166,10 +166,6 @@ bool OS::is_stdout_verbose() const {
|
|||
return _verbose_stdout;
|
||||
}
|
||||
|
||||
bool OS::is_single_window() const {
|
||||
return _single_window;
|
||||
}
|
||||
|
||||
bool OS::is_stdout_debug_enabled() const {
|
||||
return _debug_stdout;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,7 +52,6 @@ class OS {
|
|||
int low_processor_usage_mode_sleep_usec = 10000;
|
||||
bool _verbose_stdout = false;
|
||||
bool _debug_stdout = false;
|
||||
bool _single_window = false;
|
||||
String _local_clipboard;
|
||||
int _exit_code = EXIT_FAILURE; // unexpected exit is marked as failure
|
||||
bool _allow_hidpi = false;
|
||||
|
|
@ -243,8 +242,6 @@ public:
|
|||
void set_stdout_enabled(bool p_enabled);
|
||||
void set_stderr_enabled(bool p_enabled);
|
||||
|
||||
virtual bool is_single_window() const;
|
||||
|
||||
virtual void disable_crash_handler() {}
|
||||
virtual bool is_disable_crash_handler() const { return false; }
|
||||
virtual void initialize_debugging() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue