diff options
author | Micky <micheledevita2@gmail.com> | 2024-01-06 18:06:41 +0100 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2024-01-06 19:19:31 +0100 |
commit | db10ce3d8db0249e03ced4224b23a3c4ef5130b3 (patch) | |
tree | 5b9d85abb0a79e57180a1752c5ce88efc99438aa /editor/editor_interface.cpp | |
parent | 89cc635c0554cb2e518c830969ca4c5eedda0f4e (diff) | |
download | redot-engine-db10ce3d8db0249e03ced4224b23a3c4ef5130b3.tar.gz |
Add autocompletion for a few EditorInterface methods
Diffstat (limited to 'editor/editor_interface.cpp')
-rw-r--r-- | editor/editor_interface.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/editor/editor_interface.cpp b/editor/editor_interface.cpp index af1d23a4fe..b007f6d530 100644 --- a/editor/editor_interface.cpp +++ b/editor/editor_interface.cpp @@ -400,6 +400,21 @@ bool EditorInterface::is_movie_maker_enabled() const { } // Base. +void EditorInterface::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const { + String pf = p_function; + if (p_idx == 0) { + if (pf == "set_main_screen_editor") { + for (String E : { "\"2D\"", "\"3D\"", "\"Script\"", "\"AssetLib\"" }) { + r_options->push_back(E); + } + } else if (pf == "get_editor_viewport_3d") { + for (uint32_t i = 0; i < Node3DEditor::VIEWPORTS_COUNT; i++) { + r_options->push_back(String::num_int64(i)); + } + } + } + Object::get_argument_options(p_function, p_idx, r_options); +} void EditorInterface::_bind_methods() { ClassDB::bind_method(D_METHOD("restart_editor", "save"), &EditorInterface::restart_editor, DEFVAL(true)); |