aboutsummaryrefslogtreecommitdiffstats
path: root/Shaders/world.frag
diff options
context:
space:
mode:
authorclyne <clyne@bitgloo.com>2019-09-25 14:35:10 -0400
committerGitHub <noreply@github.com>2019-09-25 14:35:10 -0400
commit5de39474dd9c17cc7f09015f291769fbe3fd5931 (patch)
tree73de6ae8aad4418cd19d55d5b468a20b404446ec /Shaders/world.frag
parentec0ab456cf869f2daa6dea41158c54da745626d8 (diff)
parent1703f84121f18277c2a9bd671e204730c131c102 (diff)
Merge pull request #2 from tcsullivan/font-support
Font support
Diffstat (limited to 'Shaders/world.frag')
-rw-r--r--Shaders/world.frag2
1 files changed, 2 insertions, 0 deletions
diff --git a/Shaders/world.frag b/Shaders/world.frag
index 18945a8..79d87aa 100644
--- a/Shaders/world.frag
+++ b/Shaders/world.frag
@@ -9,6 +9,7 @@ precision mediump float;
uniform sampler2D textu;
uniform sampler2D normu;
+in float fragTrans;
in vec2 texCoord;
in vec4 fragCoord;
out vec4 FragColor;
@@ -25,6 +26,7 @@ void main()
vec3 Falloff = vec3(0.4, 0.1, 0.002);
vec4 DiffuseColor = texture2D(textu, texCoord);
+ DiffuseColor *= fragTrans;
if (DiffuseColor.a < 0.1f)
discard;