diff options
author | Dario <dariosamo@gmail.com> | 2023-09-11 09:14:39 -0300 |
---|---|---|
committer | Dario <dariosamo@gmail.com> | 2023-09-11 09:14:39 -0300 |
commit | 7dfb854556f0a69672f5e112e3bfbe7f507db3b0 (patch) | |
tree | e3d476a575ca0f0801f12b95625a0a874b48e9de /scene/3d/lightmap_gi.h | |
parent | fc99492d3066098e938449b10e02f8e01d07e2d1 (diff) | |
download | redot-engine-7dfb854556f0a69672f5e112e3bfbe7f507db3b0.tar.gz |
Propagate error correctly when max texture size for lightmaps is too small.
Add error handling for BAKE_ERROR_LIGHTMAP_TOO_SMALL, which was previously ignored. Fixes #81453.
Diffstat (limited to 'scene/3d/lightmap_gi.h')
-rw-r--r-- | scene/3d/lightmap_gi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/3d/lightmap_gi.h b/scene/3d/lightmap_gi.h index b9e33cf300..02123ef7ba 100644 --- a/scene/3d/lightmap_gi.h +++ b/scene/3d/lightmap_gi.h @@ -132,6 +132,7 @@ public: BAKE_ERROR_MESHES_INVALID, BAKE_ERROR_CANT_CREATE_IMAGE, BAKE_ERROR_USER_ABORTED, + BAKE_ERROR_TEXTURE_SIZE_TOO_SMALL, }; enum EnvironmentMode { |