Merge pull request #61910 from Calinou/lightmapgi-static-directional-fix-brightness

Fix directional LightmapGI being too dark with static lights
This commit is contained in:
Rémi Verschelde 2023-09-22 22:03:01 +02:00
commit 6094738059
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -415,7 +415,7 @@ void main() {
);
for (uint j = 0; j < 4; j++) {
sh_accum[j].rgb += light * c[j] * (1.0 / 3.0);
sh_accum[j].rgb += light * c[j] * 8.0;
}
#endif