swwmgz_m/shaders/glsl/JetSmoke.fp
Marisa Kirisame fb078b7232 Silver Bullet JET fully implemented.
Ammo rebalancing.
Damage boost to Candy Gun.
Various small adjustments.
Grilled Cheese Sandwich now gives 3 seconds of invulnerability on activation.
2020-06-13 21:32:28 +02:00

9 lines
265 B
GLSL

vec4 ProcessTexel()
{
vec3 base = getTexel(vTexCoord.st).rgb;
vec2 scroll = vTexCoord.st*.5+vec2(.2,.5)*timer;
float smk = texture(smoketex,scroll).x;
scroll = vTexCoord.st*.9+vec2(-.2,.4)*timer;
smk *= texture(smoketex,scroll).x;
return vec4(base*smk,1.);
}