Skip to content

Commit

Permalink
- Minor tweak to noise shader in template project
Browse files Browse the repository at this point in the history
  • Loading branch information
iarwain committed Nov 25, 2024
1 parent 83bf059 commit f620b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/build/template/data/config/[=name].ini
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ noise = noise CellularNoise
Code = "
void main()
{
gl_FragColor = gl_Color * texture2D(object, gl_TexCoord[0].xy) * texture2D(noise, gl_TexCoord[0].xy);
gl_FragColor = gl_Color * vec4(3.0f) * texture2D(object, gl_TexCoord[0].xy) * texture2D(noise, gl_TexCoord[0].xy);
}
"]

Expand Down

0 comments on commit f620b4d

Please sign in to comment.