4 lines
118 B
GLSL
4 lines
118 B
GLSL
|
vec4 effect(vec4 vcolor, Image texture, vec2 tc, vec2 pc) {
|
||
|
return vec4(0.1, 0.1, 0.1, Texel(texture, tc).a*0.5);
|
||
|
}
|