mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
9 lines
143 B
GLSL
9 lines
143 B
GLSL
uniform vec4 u_Color;
|
|
|
|
varying float var_Scale;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = u_Color;
|
|
gl_FragColor.a = sqrt(clamp(var_Scale, 0.0, 1.0));
|
|
}
|