lol fixed dumbass shader thinge oops

This commit is contained in:
Cameron Taylor 2021-03-23 21:33:17 -04:00
parent 699a77201b
commit a7a15cc6b9
1 changed files with 5 additions and 2 deletions

View File

@ -96,7 +96,10 @@ class ColorSwapShader extends FlxShader
// money += swagColor[0];
color = vec4(hsv2rgb(vec3(swagColor[0], swagColor[1], swagColor[2])), swagColor[3]);
/*
gl_FragColor = color;
/*
if (color.a > 0.5)
gl_FragColor = color;
else
@ -110,7 +113,7 @@ class ColorSwapShader extends FlxShader
else
gl_FragColor = color;
}
*/
*/
}