diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-10-10 18:13:24 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-10-10 18:13:24 -0500 |
commit | 92e51fca7247c932f95a1662aefc28aca96e8de6 (patch) | |
tree | 6428fa4ef23b48c640b3e52bd9d5482fa8971eec | |
parent | e589074f69b66b871537984e203a1e264327a5bf (diff) | |
parent | 203f7427c4952d3ba45a1dd89de019312a1f0bba (diff) | |
download | redot-engine-92e51fca7247c932f95a1662aefc28aca96e8de6.tar.gz |
Merge pull request #97979 from BlueCube3310/fix-thumb-gen
Fix crash when creating thumbnails for 3d textures
-rw-r--r-- | editor/plugins/editor_preview_plugins.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/editor/plugins/editor_preview_plugins.cpp b/editor/plugins/editor_preview_plugins.cpp index a2c36b1f3c..9a53f07a3f 100644 --- a/editor/plugins/editor_preview_plugins.cpp +++ b/editor/plugins/editor_preview_plugins.cpp @@ -112,9 +112,13 @@ Ref<Texture2D> EditorTexturePreviewPlugin::generate(const Ref<Resource> &p_from, return Ref<Texture2D>(); } - const int mid_depth = (tex_3d->get_depth() - 1) / 2; - Vector<Ref<Image>> data = tex_3d->get_data(); + if (data.size() != tex_3d->get_depth()) { + return Ref<Texture2D>(); + } + + // Use the middle slice for the thumbnail. + const int mid_depth = (tex_3d->get_depth() - 1) / 2; if (!data.is_empty() && data[mid_depth].is_valid()) { img = data[mid_depth]->duplicate(); } @@ -124,6 +128,7 @@ Ref<Texture2D> EditorTexturePreviewPlugin::generate(const Ref<Resource> &p_from, return Ref<Texture2D>(); } + // Use the middle slice for the thumbnail. const int mid_layer = (tex_lyr->get_layers() - 1) / 2; Ref<Image> data = tex_lyr->get_layer_data(mid_layer); |