summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-04-01 15:18:13 +0200
committerkobewi <kobewi4e@gmail.com>2023-04-03 16:27:19 +0200
commit13c8a9890d925fccd7a7988c63bc4867ed81ddeb (patch)
treeac6d77e223b8c8b7b0470feb507f763369e74774 /editor/editor_data.cpp
parent1db9de54068186bc5ad7ecaaac8ace36600bdee9 (diff)
downloadredot-engine-13c8a9890d925fccd7a7988c63bc4867ed81ddeb.tar.gz
Improve editor state initialization
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp
index c381c8c322..cfe382bcd3 100644
--- a/editor/editor_data.cpp
+++ b/editor/editor_data.cpp
@@ -296,6 +296,13 @@ Dictionary EditorData::get_scene_editor_states(int p_idx) const {
}
void EditorData::set_editor_states(const Dictionary &p_states) {
+ if (p_states.is_empty()) {
+ for (EditorPlugin *ep : editor_plugins) {
+ ep->clear();
+ }
+ return;
+ }
+
List<Variant> keys;
p_states.get_key_list(&keys);