summaryrefslogtreecommitdiffstats
path: root/editor/editor_interface.cpp
diff options
context:
space:
mode:
authorMicky <micheledevita2@gmail.com>2024-01-03 12:10:11 +0100
committerMicky <micheledevita2@gmail.com>2024-02-29 18:00:54 +0100
commitcd2032a90b7b1a499ccf08fbf62d70e0ac9bb8fa (patch)
treeb14b54af89e1c8c0a090e66a767c2f715415d819 /editor/editor_interface.cpp
parentbb6b06c81343073f10cbbd2af515cf0dac1e6549 (diff)
downloadredot-engine-cd2032a90b7b1a499ccf08fbf62d70e0ac9bb8fa.tar.gz
Optimise Object's `get_argument_options`
Diffstat (limited to 'editor/editor_interface.cpp')
-rw-r--r--editor/editor_interface.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/editor/editor_interface.cpp b/editor/editor_interface.cpp
index 5835dfc5f2..35e846b344 100644
--- a/editor/editor_interface.cpp
+++ b/editor/editor_interface.cpp
@@ -492,9 +492,9 @@ bool EditorInterface::is_movie_maker_enabled() const {
return EditorRunBar::get_singleton()->is_movie_maker_enabled();
}
-// Base.
+#ifdef TOOLS_ENABLED
void EditorInterface::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const {
- String pf = p_function;
+ const String pf = p_function;
if (p_idx == 0) {
if (pf == "set_main_screen_editor") {
for (String E : { "\"2D\"", "\"3D\"", "\"Script\"", "\"AssetLib\"" }) {
@@ -508,6 +508,9 @@ void EditorInterface::get_argument_options(const StringName &p_function, int p_i
}
Object::get_argument_options(p_function, p_idx, r_options);
}
+#endif
+
+// Base.
void EditorInterface::_bind_methods() {
ClassDB::bind_method(D_METHOD("restart_editor", "save"), &EditorInterface::restart_editor, DEFVAL(true));