Skip to content

Commit

Permalink
[FIX] remove extraneous bracket in diffuseDetailMap shader chunk (#4481)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mintytorus committed Jul 26, 2022
1 parent 7a73eca commit c395324
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ uniform sampler2D texture_diffuseDetailMap;
vec3 addAlbedoDetail(vec3 albedo) {
#ifdef MAPTEXTURE
vec3 albedoDetail = gammaCorrectInput(texture2D(texture_diffuseDetailMap, $UV, textureBias).$CH));
vec3 albedoDetail = gammaCorrectInput(texture2D(texture_diffuseDetailMap, $UV, textureBias).$CH);
return detailMode_$DETAILMODE(albedo, albedoDetail);
#else
return albedo;
Expand Down

0 comments on commit c395324

Please sign in to comment.