mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-04-29 19:44:49 +02:00
12 lines
171 B
GLSL
12 lines
171 B
GLSL
![]() |
|
||
|
uniform sampler2D texture;
|
||
|
|
||
|
varying vec2 v_texCoord;
|
||
|
varying vec4 v_color;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = texture2D(texture, v_texCoord);
|
||
|
gl_FragColor.a *= v_color.a;
|
||
|
}
|