diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-01-18 13:06:48 +0100 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-01-22 17:51:12 +0100 |
commit | 97b469c46d8a3225cc26b22952e408451192794e (patch) | |
tree | 4b1ea2c0c53b5de3bd2efff3c25b3f55ee6ad5c2 /editor/editor_data.cpp | |
parent | 0bcc0e92b3f0ac57d4c4650722f347593a258572 (diff) | |
download | redot-engine-97b469c46d8a3225cc26b22952e408451192794e.tar.gz |
[Editor] Add `EditorPlugin::scene_saved` signal
Matches the `EditorNode` one for parity with the exposed
`resource_saved` signal
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index 794d1b3e10..786e841c21 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -361,6 +361,12 @@ void EditorData::notify_resource_saved(const Ref<Resource> &p_resource) { } } +void EditorData::notify_scene_saved(const String &p_path) { + for (int i = 0; i < editor_plugins.size(); i++) { + editor_plugins[i]->notify_scene_saved(p_path); + } +} + void EditorData::clear_editor_states() { for (int i = 0; i < editor_plugins.size(); i++) { editor_plugins[i]->clear(); |