diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2020-03-08 18:58:31 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2020-03-08 22:57:48 +0100 |
commit | 4d623b70d726309ccec31698fc639fb4f8bc4ae5 (patch) | |
tree | e186f7217ac65e850b7794a144daa644e7763cba /editor/editor_run.h | |
parent | 7579a792bed9881a6afd73c058dfd57441fb5c7a (diff) | |
download | redot-engine-4d623b70d726309ccec31698fc639fb4f8bc4ae5.tar.gz |
Move Debug menu logic to DebuggerEditorPlugin
Diffstat (limited to 'editor/editor_run.h')
-rw-r--r-- | editor/editor_run.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/editor/editor_run.h b/editor/editor_run.h index 389a1e6b20..06050436a9 100644 --- a/editor/editor_run.h +++ b/editor/editor_run.h @@ -45,13 +45,11 @@ public: List<OS::ProcessID> pids; private: - bool debug_collisions; - bool debug_navigation; Status status; public: Status get_status() const; - Error run(const String &p_scene, const String &p_custom_args, const List<String> &p_breakpoints, const bool &p_skip_breakpoints = false, const int &p_instances = 1); + Error run(const String &p_scene, const String &p_custom_args, const List<String> &p_breakpoints, const bool &p_skip_breakpoints = false); void run_native_notify() { status = STATUS_PLAY; } void stop(); @@ -59,12 +57,6 @@ public: bool has_child_process(OS::ProcessID p_pid) const; int get_child_process_count() const { return pids.size(); } - void set_debug_collisions(bool p_debug); - bool get_debug_collisions() const; - - void set_debug_navigation(bool p_debug); - bool get_debug_navigation() const; - EditorRun(); }; |