Shader fixes for Delta Touch.

This commit is contained in:
Marisa the Magician 2023-11-29 19:36:58 +01:00
commit db6eced213
5 changed files with 16 additions and 16 deletions

View file

@ -1,7 +1,7 @@
vec4 ProcessTexel()
{
const vec3 fadecol = vec3(.9,.1,.2);
vec2 coord = vTexCoord.st+vec2(timer*0.02,0.);
vec2 coord = vTexCoord.st+vec2(timer*.02,0.);
coord = fract(coord);
vec3 base = getTexel(coord).rgb;
float dist = abs(vTexCoord.s-.5)*2.;