diff options
| author | Juan Linietsky | 2016-08-06 19:00:54 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-08-06 19:00:54 -0300 |
| commit | 9890c1d2ca76dc936e23f5263a4fd296bfc68996 (patch) | |
| tree | be0d304ab3f3b19e3460eee5e0bbdf68d0028f12 /tools/editor/plugins/script_text_editor.h | |
| parent | 259418f8275371fc2f0bab6892caa4ef66b84240 (diff) | |
| download | godot-9890c1d2ca76dc936e23f5263a4fd296bfc68996.tar.gz godot-9890c1d2ca76dc936e23f5263a4fd296bfc68996.tar.zst godot-9890c1d2ca76dc936e23f5263a4fd296bfc68996.zip | |
Likely with bugs and with some features are missing, as well as profiler support, but VisualScript should be more or less done!
Diffstat (limited to 'tools/editor/plugins/script_text_editor.h')
| -rw-r--r-- | tools/editor/plugins/script_text_editor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/editor/plugins/script_text_editor.h b/tools/editor/plugins/script_text_editor.h index ad927c572..247fd97e8 100644 --- a/tools/editor/plugins/script_text_editor.h +++ b/tools/editor/plugins/script_text_editor.h @@ -115,7 +115,7 @@ public: virtual void trim_trailing_whitespace(); virtual void tag_saved_version(); - virtual void goto_line(int p_line); + virtual void goto_line(int p_line,bool p_with_error=false); virtual void reload(bool p_soft); virtual void get_breakpoints(List<int> *p_breakpoints); @@ -126,6 +126,8 @@ public: virtual void set_tooltip_request_func(String p_method,Object* p_obj); + virtual void set_debugger_active(bool p_active); + Control *get_edit_menu(); static void register_editor(); |
