diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-04-05 17:14:46 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-04-17 21:59:09 +0200 |
commit | 49d7041d34e78bd6295b6a48b7c3fe1e7ba75bbc (patch) | |
tree | 8b0388466270fa20d7ab6f890a052ba363d54ed7 /editor/editor_paths.cpp | |
parent | 055ee1276f097727d1c0ba3c1c25a12981c20bfa (diff) | |
download | redot-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.cpp | 4 |
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(); |