summaryrefslogtreecommitdiffstats
path: root/editor/editor_paths.cpp
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-04-05 17:14:46 +0200
committerYuri Sizov <yuris@humnom.net>2023-04-17 21:59:09 +0200
commit49d7041d34e78bd6295b6a48b7c3fe1e7ba75bbc (patch)
tree8b0388466270fa20d7ab6f890a052ba363d54ed7 /editor/editor_paths.cpp
parent055ee1276f097727d1c0ba3c1c25a12981c20bfa (diff)
downloadredot-engine-49d7041d34e78bd6295b6a48b7c3fe1e7ba75bbc.tar.gz
Decouple EditorInterface from EditorPlugin
- Simplify some includes in the process. - Also exposes EditorInterface.movie_maker_enabled as a property.
Diffstat (limited to 'editor/editor_paths.cpp')
-rw-r--r--editor/editor_paths.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_paths.cpp b/editor/editor_paths.cpp
index d5ba841801..610f66cff9 100644
--- a/editor/editor_paths.cpp
+++ b/editor/editor_paths.cpp
@@ -91,8 +91,7 @@ String EditorPaths::get_feature_profiles_dir() const {
}
void EditorPaths::create() {
- ERR_FAIL_COND(singleton != nullptr);
- memnew(EditorPaths());
+ memnew(EditorPaths);
}
void EditorPaths::free() {
@@ -111,6 +110,7 @@ void EditorPaths::_bind_methods() {
}
EditorPaths::EditorPaths() {
+ ERR_FAIL_COND(singleton != nullptr);
singleton = this;
project_data_dir = ProjectSettings::get_singleton()->get_project_data_path();