diff options
Diffstat (limited to 'editor/script_editor_debugger.h')
-rw-r--r-- | editor/script_editor_debugger.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/editor/script_editor_debugger.h b/editor/script_editor_debugger.h index 49a4abb6ac..907c267d49 100644 --- a/editor/script_editor_debugger.h +++ b/editor/script_editor_debugger.h @@ -84,6 +84,8 @@ class ScriptEditorDebugger : public Control { int last_error_count; bool hide_on_stop; + bool enable_external_editor; + Ref<Script> stack_script; TabContainer *tabs; @@ -201,6 +203,11 @@ public: void set_hide_on_stop(bool p_hide); + bool get_debug_with_external_editor() const; + void set_debug_with_external_editor(bool p_enabled); + + Ref<Script> get_dump_stack_script() const; + void set_tool_button(Button *p_tb) { debugger_button = p_tb; } void reload_scripts(); |