| 369 | } |
| 370 | |
| 371 | void EditorData::notify_resource_saved(const Ref<Resource> &p_resource) { |
| 372 | for (int i = 0; i < editor_plugins.size(); i++) { |
| 373 | editor_plugins[i]->notify_resource_saved(p_resource); |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | void EditorData::notify_scene_saved(const String &p_path) { |
| 378 | for (int i = 0; i < editor_plugins.size(); i++) { |
no test coverage detected