Skip to content

Commit

Permalink
added missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackYps authored Jan 5, 2020
1 parent da0264d commit 314b6ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion effects/mesh.fx
Original file line number Diff line number Diff line change
Expand Up @@ -2884,7 +2884,7 @@ float4 UnitFalloffPS_02( NORMALMAPPED_VERTEX vertex, uniform bool hiDefShadows)

// Combine all previous computations
float3 color = (diffuse.rgb + float3(0.25,0.35,0.45)) * light * (1 - diffuse.a) * 0.4;
color += float3(0.5,0.6,0.7) * (phongAdditive + environment)
color += float3(0.5,0.6,0.7) * (phongAdditive + environment);
color += (teamColor * diffuse.a) + whiteness;

// Substitute all the computations on pure glowing parts with the pure brightness texture
Expand Down

0 comments on commit 314b6ee

Please sign in to comment.