summaryrefslogtreecommitdiffstats
path: root/editor/plugins
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2023-10-11 17:49:29 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2023-10-16 18:50:56 +0800
commit15e66ccb9bdcda323572698369785ac3df528765 (patch)
treea1198fbbf8d0b19e700f401db8cf9f5a4bad0feb /editor/plugins
parent6916349697a4339216469e9bf5899b983d78db07 (diff)
downloadredot-engine-15e66ccb9bdcda323572698369785ac3df528765.tar.gz
Close shader in Shader Editor tab when deleting shader file in FileSystem panel
Diffstat (limited to 'editor/plugins')
-rw-r--r--editor/plugins/shader_editor_plugin.cpp15
-rw-r--r--editor/plugins/shader_editor_plugin.h1
2 files changed, 16 insertions, 0 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp
index 9eebf958ff..019d62a4bf 100644
--- a/editor/plugins/shader_editor_plugin.cpp
+++ b/editor/plugins/shader_editor_plugin.cpp
@@ -64,6 +64,11 @@ void ShaderEditorPlugin::_update_shader_list() {
}
}
+ // When shader is deleted in filesystem dock, need this to correctly close shader editor.
+ if (!path.is_empty()) {
+ shader->set_meta("_edit_res_path", path);
+ }
+
bool unsaved = false;
if (edited_shader.shader_editor) {
unsaved = edited_shader.shader_editor->is_unsaved();
@@ -571,10 +576,20 @@ void ShaderEditorPlugin::_window_changed(bool p_visible) {
make_floating->set_visible(!p_visible);
}
+void ShaderEditorPlugin::_file_removed(const String &p_removed_file) {
+ for (uint32_t i = 0; i < edited_shaders.size(); i++) {
+ const Ref<Shader> &shader = edited_shaders[i].shader;
+ if (shader->get_meta("_edit_res_path") == p_removed_file) {
+ _close_shader(i);
+ }
+ }
+}
+
void ShaderEditorPlugin::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_READY: {
EditorNode::get_singleton()->connect("scene_closed", callable_mp(this, &ShaderEditorPlugin::_close_builtin_shaders_from_scene));
+ FileSystemDock::get_singleton()->connect("file_removed", callable_mp(this, &ShaderEditorPlugin::_file_removed));
} break;
}
}
diff --git a/editor/plugins/shader_editor_plugin.h b/editor/plugins/shader_editor_plugin.h
index fb7b283266..8b48140262 100644
--- a/editor/plugins/shader_editor_plugin.h
+++ b/editor/plugins/shader_editor_plugin.h
@@ -87,6 +87,7 @@ class ShaderEditorPlugin : public EditorPlugin {
void _resource_saved(Object *obj);
void _close_shader(int p_index);
void _close_builtin_shaders_from_scene(const String &p_scene);
+ void _file_removed(const String &p_removed_file);
void _shader_created(Ref<Shader> p_shader);
void _shader_include_created(Ref<ShaderInclude> p_shader_inc);