Reduce intensity of glowing objects like giftboxes

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14702 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2013-12-11 01:16:40 +00:00
parent d18068f2f4
commit 1fb46ca162

View File

@@ -9,8 +9,9 @@ void main()
float alpha = col.a;
if (alpha < 0.04) discard;
col *= vec4(vec3(4.0), 1.5);
col.a *= 0.6;
gl_FragColor = col;
}