diff options
author | kobewi <kobewi4e@gmail.com> | 2023-04-01 15:18:13 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-04-03 16:27:19 +0200 |
commit | 13c8a9890d925fccd7a7988c63bc4867ed81ddeb (patch) | |
tree | ac6d77e223b8c8b7b0470feb507f763369e74774 /editor/editor_data.cpp | |
parent | 1db9de54068186bc5ad7ecaaac8ace36600bdee9 (diff) | |
download | redot-engine-13c8a9890d925fccd7a7988c63bc4867ed81ddeb.tar.gz |
Improve editor state initialization
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 7 |
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); |