diff options
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); |