Merge pull request #17116 from poke1024/fix16734
Fix round preview getting square on "run scene" (issue 16734)
This commit is contained in:
commit
401a39f57e
3 changed files with 4 additions and 1 deletions
|
@ -984,6 +984,7 @@ void EditorNode::_save_scene_with_preview(String p_file, int p_idx) {
|
|||
|
||||
String file = cache_base + ".png";
|
||||
|
||||
post_process_preview(img);
|
||||
img->save_png(file);
|
||||
}
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
#include "scene/resources/material.h"
|
||||
#include "scene/resources/mesh.h"
|
||||
|
||||
static void post_process_preview(Ref<Image> p_image) {
|
||||
void post_process_preview(Ref<Image> p_image) {
|
||||
|
||||
if (p_image->get_format() != Image::FORMAT_RGBA8)
|
||||
p_image->convert(Image::FORMAT_RGBA8);
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
|
||||
#include "editor/editor_resource_preview.h"
|
||||
|
||||
void post_process_preview(Ref<Image> p_image);
|
||||
|
||||
class EditorTexturePreviewPlugin : public EditorResourcePreviewGenerator {
|
||||
GDCLASS(EditorTexturePreviewPlugin, EditorResourcePreviewGenerator)
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue