Fixed issue where DARKEN wasn't multiplying alpha value

This commit is contained in:
Collin Smith 2019-11-12 20:08:10 -08:00
parent 3317794cb5
commit 8c7a340582

View File

@ -94,7 +94,7 @@ void main() {
// Same as 8, except darker
} else if (blendMode == 10) {
if (color.a > 0.0) {
color.rgb *= tint.rgb;
color.rgba *= tint.rgba;
}
}