Skip to content

Commit

Permalink
Fix CCC shaders
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Sep 12, 2023
1 parent 80ed16e commit 1235f27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void main() {
// Transform the vertex position into model-view-projection space
gl_Position = iris_ProjectionMatrix * iris_ModelViewMatrix * vec4(position, 1.0);
v_ColorModulator = _vert_color * vec4(_sample_lightmap(_vert_tex_light_coord), 1.0);
v_ColorModulator = vec4((_vert_color.rgb * _vert_color.a), 1) * vec4(_sample_lightmap(_vert_tex_light_coord), 1.0);
v_TexCoord = _vert_tex_diffuse_coord;
v_MaterialMipBias = _material_mip_bias(_material_params);
Expand Down

0 comments on commit 1235f27

Please sign in to comment.