diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2024-06-28 20:46:19 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2024-06-28 21:48:36 +0200 |
commit | 49b4c20f3a73bbf09b03f43c638273276590836a (patch) | |
tree | 5201fce9a03d1b60cb898d8139d3913ce390d6fb | |
parent | 811ce36c6090013f1a48676c0388892bf1621288 (diff) | |
download | redot-engine-49b4c20f3a73bbf09b03f43c638273276590836a.tar.gz |
Preserve existing alpha channel when using Normal Map Invert Y import option
While normal maps with RGTC compression cannot contain an alpha channel,
it is possible for Godot to read non-RGTC normal maps that can contain
an alpha channel that custom shaders can read.
The visual output for opaque images (including RGTC normal maps)
is unaffected by this change.
-rw-r--r-- | editor/import/resource_importer_texture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/import/resource_importer_texture.cpp b/editor/import/resource_importer_texture.cpp index 487b8fc175..4869a44b8c 100644 --- a/editor/import/resource_importer_texture.cpp +++ b/editor/import/resource_importer_texture.cpp @@ -558,7 +558,7 @@ Error ResourceImporterTexture::import(const String &p_source_file, const String for (int i = 0; i < width; i++) { for (int j = 0; j < height; j++) { const Color color = target_image->get_pixel(i, j); - target_image->set_pixel(i, j, Color(color.r, 1 - color.g, color.b)); + target_image->set_pixel(i, j, Color(color.r, 1 - color.g, color.b, color.a)); } } } |