diff --git a/source/blender/blenloader/intern/versioning_400.cc b/source/blender/blenloader/intern/versioning_400.cc index 6cd2f7f347a..b00ff8b7769 100644 --- a/source/blender/blenloader/intern/versioning_400.cc +++ b/source/blender/blenloader/intern/versioning_400.cc @@ -3334,6 +3334,9 @@ void blo_do_versions_400(FileData *fd, Library * /*lib*/, Main *bmain) LISTBASE_FOREACH (Scene *, scene, &bmain->scenes) { scene->eevee.clamp_surface_indirect = 10.0f; + /* Make contribution of indirect lighting very small (but non-null) to avoid world lighting + * and volume lightprobe changing the appearance of volume objects. */ + scene->eevee.clamp_surface_indirect = 1e-8f; } }