diff options
| author | Juan Linietsky | 2015-06-26 01:14:31 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-06-26 01:14:49 -0300 |
| commit | a67486a39ee629acac068a6d014015944cf83bb3 (patch) | |
| tree | b101b6b94481d1ac074f917620a9545f9e516089 /tools/editor/plugins/script_editor_plugin.h | |
| parent | 71cc2561c63b2b2bc692e370acbc8bb57f031567 (diff) | |
| download | godot-a67486a39ee629acac068a6d014015944cf83bb3.tar.gz godot-a67486a39ee629acac068a6d014015944cf83bb3.tar.zst godot-a67486a39ee629acac068a6d014015944cf83bb3.zip | |
improved get_node(), connect(), etc code completion.
-properly completes text arguments
-includes the "/root" autoloads
Diffstat (limited to 'tools/editor/plugins/script_editor_plugin.h')
| -rw-r--r-- | tools/editor/plugins/script_editor_plugin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.h b/tools/editor/plugins/script_editor_plugin.h index 74a7d7e3e..0dd152cb2 100644 --- a/tools/editor/plugins/script_editor_plugin.h +++ b/tools/editor/plugins/script_editor_plugin.h @@ -106,6 +106,8 @@ public: }; +class EditorScriptCodeCompletionCache; + class ScriptEditor : public VBoxContainer { OBJ_TYPE(ScriptEditor, VBoxContainer ); @@ -191,6 +193,7 @@ class ScriptEditor : public VBoxContainer { ScriptEditorQuickOpen *quick_open; + EditorScriptCodeCompletionCache *completion_cache; void _editor_play(); void _editor_pause(); @@ -248,6 +251,7 @@ public: void get_window_layout(Ref<ConfigFile> p_layout); ScriptEditor(EditorNode *p_editor); + ~ScriptEditor(); }; class ScriptEditorPlugin : public EditorPlugin { |
