diff options
author | RedMser <redmser.jj2@gmail.com> | 2023-03-04 20:27:56 +0100 |
---|---|---|
committer | RedMser <redmser.jj2@gmail.com> | 2023-07-24 18:46:36 +0200 |
commit | 8e0e81ced34c3a443710a597e0184353336be2d1 (patch) | |
tree | e2023769c68ebc7c53371ac1852cc02632a3a543 /editor/editor_interface.cpp | |
parent | 6588a4a29af1621086feac0117d5d4d37af957fd (diff) | |
download | redot-engine-8e0e81ced34c3a443710a597e0184353336be2d1.tar.gz |
Allow changing feature profile via EditorInterface
Diffstat (limited to 'editor/editor_interface.cpp')
-rw-r--r-- | editor/editor_interface.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/editor/editor_interface.cpp b/editor/editor_interface.cpp index d9d9dc01c0..d0d695f2f8 100644 --- a/editor/editor_interface.cpp +++ b/editor/editor_interface.cpp @@ -31,6 +31,7 @@ #include "editor_interface.h" #include "editor/editor_command_palette.h" +#include "editor/editor_feature_profile.h" #include "editor/editor_node.h" #include "editor/editor_paths.h" #include "editor/editor_resource_preview.h" @@ -239,6 +240,14 @@ void EditorInterface::popup_dialog_centered_clamped(Window *p_dialog, const Size p_dialog->popup_exclusive_centered_clamped(EditorNode::get_singleton(), p_size, p_fallback_ratio); } +String EditorInterface::get_current_feature_profile() const { + return EditorFeatureProfileManager::get_singleton()->get_current_profile_name(); +} + +void EditorInterface::set_current_feature_profile(const String &p_profile_name) { + EditorFeatureProfileManager::get_singleton()->set_current_profile(p_profile_name, true); +} + // Editor docks. FileSystemDock *EditorInterface::get_file_system_dock() const { @@ -407,6 +416,9 @@ void EditorInterface::_bind_methods() { ClassDB::bind_method(D_METHOD("popup_dialog_centered_ratio", "dialog", "ratio"), &EditorInterface::popup_dialog_centered_ratio, DEFVAL(0.8)); ClassDB::bind_method(D_METHOD("popup_dialog_centered_clamped", "dialog", "minsize", "fallback_ratio"), &EditorInterface::popup_dialog_centered_clamped, DEFVAL(Size2i()), DEFVAL(0.75)); + ClassDB::bind_method(D_METHOD("get_current_feature_profile"), &EditorInterface::get_current_feature_profile); + ClassDB::bind_method(D_METHOD("set_current_feature_profile", "profile_name"), &EditorInterface::set_current_feature_profile); + ADD_PROPERTY(PropertyInfo(Variant::BOOL, "distraction_free_mode"), "set_distraction_free_mode", "is_distraction_free_mode_enabled"); // Editor docks. |