diff options
author | dzil123 <5725958+dzil123@users.noreply.github.com> | 2022-11-01 03:54:04 -0700 |
---|---|---|
committer | dzil123 <5725958+dzil123@users.noreply.github.com> | 2022-11-01 03:54:04 -0700 |
commit | 1fa8b3dd420301dd5c2ad99b6bead6cffe1d4995 (patch) | |
tree | 4f1d6e3bdb2b2f6923fa1b3e4ae225c7d1974e98 /core/io | |
parent | e6751549cf7247965d1744b8c464f5e901006f21 (diff) |
Fix Image::bump_map_to_normal_map incorrectly keeping mipmap flag
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/image.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/io/image.cpp b/core/io/image.cpp index 16dd66fc98..6a049014bc 100644 --- a/core/io/image.cpp +++ b/core/io/image.cpp @@ -3524,6 +3524,7 @@ Ref<Image> Image::get_image_from_mipmap(int p_mipamp) const { void Image::bump_map_to_normal_map(float bump_scale) { ERR_FAIL_COND(!_can_modify(format)); + clear_mipmaps(); convert(Image::FORMAT_RF); Vector<uint8_t> result_image; //rgba output |