diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-03-09 12:01:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 12:01:14 +0100 |
commit | e162c07af933488cd5d867424e7a22b162334e5e (patch) | |
tree | 5ef507737776195ca5f6e650718a6516986b7848 /editor/editor_run_native.h | |
parent | a4318281d32e37160852255d9b8500ba3fb948b9 (diff) | |
parent | bfc1b76803f1606e7d108bdaab63c1a2ba7b59f1 (diff) |
Merge pull request #36920 from Faless/debugger/more_instances
Move Debug menu logic to DebuggerEditorPlugin, allow 4 debug instances
Diffstat (limited to 'editor/editor_run_native.h')
-rw-r--r-- | editor/editor_run_native.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/editor/editor_run_native.h b/editor/editor_run_native.h index be2e6d269d..5f2236b88c 100644 --- a/editor/editor_run_native.h +++ b/editor/editor_run_native.h @@ -40,10 +40,6 @@ class EditorRunNative : public HBoxContainer { Map<int, MenuButton *> menus; bool first; - bool deploy_dumb; - bool deploy_debug_remote; - bool debug_collisions; - bool debug_navigation; int resume_idx; int resume_platform; @@ -55,18 +51,8 @@ protected: void _notification(int p_what); public: - void set_deploy_dumb(bool p_enabled); - bool is_deploy_dumb_enabled() const; - - void set_deploy_debug_remote(bool p_enabled); bool is_deploy_debug_remote_enabled() const; - void set_debug_collisions(bool p_debug); - bool get_debug_collisions() const; - - void set_debug_navigation(bool p_debug); - bool get_debug_navigation() const; - void resume_run_native(); EditorRunNative(); |