Ammo rebalancing. Damage boost to Candy Gun. Various small adjustments. Grilled Cheese Sandwich now gives 3 seconds of invulnerability on activation.
9 lines
265 B
GLSL
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.);
|
|
}
|