SNKRX/assets/shaders/shadow.frag

4 lines
118 B
GLSL
Raw Permalink Normal View History

2021-02-18 05:11:25 +01:00
vec4 effect(vec4 vcolor, Image texture, vec2 tc, vec2 pc) {
return vec4(0.1, 0.1, 0.1, Texel(texture, tc).a*0.5);
}