Viewports fixed. Damage HUD. Free steering fixed.

This commit is contained in:
2014-05-28 20:22:38 +02:00
parent f813f8d2ca
commit cc42b94000
18 changed files with 744 additions and 1132 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
#version 430
uniform vec4 Color;
layout(binding=0) uniform sampler2D texture0;
in VertexData {
@@ -14,5 +16,5 @@ void main() {
// Texture
vec4 texel = texture(texture0, Input.TextureCoord);
fragmentColor = texel;
fragmentColor = texel * Color;
}