This repository has been archived on 2022-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
WaveGGJ17/Resources/shaderHalo.frag
2017-01-21 21:18:38 +01:00

9 lines
No EOL
225 B
GLSL

// uniform float time2;
uniform bool blue;
void main(void) {
// float transpa = sin(time2)*255.;
vec4 color = (246,111,231, 255); //246, 111,231,255
if (blue) color = (0,153,253, 255);
gl_FragColor = color;
}