1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Clear last frame directional light buffer when number of lights changes.

This ensures that the buffers don't go out of sync.
This commit is contained in:
clayjohn
2022-09-14 08:30:35 -07:00
parent bf271ea6af
commit 72d899702b
2 changed files with 2 additions and 0 deletions

View File

@@ -683,6 +683,7 @@ void RasterizerSceneGLES3::_setup_sky(const RenderDataGLES3 *p_render_data, cons
light_data_dirty = true;
for (uint32_t i = sky_globals.directional_light_count; i < sky_globals.max_directional_lights; i++) {
sky_globals.directional_lights[i].enabled = false;
sky_globals.last_frame_directional_lights[i].enabled = false;
}
}