UI: Asset Shelf (Experimental Feature) #104831

Closed
Julian Eisel wants to merge 399 commits from asset-shelf into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 2 additions and 2 deletions
Showing only changes of commit cceec5afb2 - Show all commits

View File

@ -94,7 +94,7 @@ void main()
irradiance_capture(surfel, P, sh);
}
else {
vec3 world_radiance = irradiance_sky_sample(-sky_L);
vec3 world_radiance = irradiance_sky_sample(sky_L);
irradiance_capture(sky_L, world_radiance, sh);
}
@ -103,7 +103,7 @@ void main()
irradiance_capture(surfel, P, sh);
}
else {
vec3 world_radiance = irradiance_sky_sample(sky_L);
vec3 world_radiance = irradiance_sky_sample(-sky_L);
irradiance_capture(-sky_L, world_radiance, sh);
}