8 lines
124 B
Plaintext
8 lines
124 B
Plaintext
varying vec2 uv;
|
|
|
|
void main() {
|
|
vec4 col = gl_Color;
|
|
col.a = (1.0 - abs(0.5 - uv.y)) * 2.0;
|
|
gl_FragColor = col;
|
|
}
|