mirror of https://github.com/godotengine/godot
Merge pull request #65789 from clayjohn/sky-update-bug
Clear last frame directional light buffer when number of lights changes.
This commit is contained in:
commit
957aa79ce0
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1261,6 +1261,7 @@ void SkyRD::setup(RID p_env, Ref<RenderSceneBuffersRD> p_render_buffers, const P
|
|||
light_data_dirty = true;
|
||||
for (uint32_t i = sky_scene_state.ubo.directional_light_count; i < sky_scene_state.max_directional_lights; i++) {
|
||||
sky_scene_state.directional_lights[i].enabled = false;
|
||||
sky_scene_state.last_frame_directional_lights[i].enabled = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue