Revert "Merge pull request #75 from teamfisk/NormalSpecularMapping"

This reverts commit 192de80782, reversing
changes made to 24aac6a00d.
This commit is contained in:
2016-02-03 16:16:06 +01:00
parent 2cbeef4c69
commit b56824786c
29 changed files with 137 additions and 2021 deletions
+1 -3
View File
@@ -20,7 +20,6 @@ out VertexData{
vec3 BiTangent;
vec2 TextureCoordinate;
vec4 ExplosionColor;
float ExplosionPercentageElapsed;
}Output;
void main()
@@ -42,6 +41,5 @@ void main()
Output.Normal = vec3(M * vec4(Normal, 0.0));
Output.Tangent = vec3(M * vec4(Tangent, 0.0));
Output.BiTangent = vec3(M * vec4(BiTangent, 0.0));
Output.ExplosionColor = vec4(1.0);
Output.ExplosionPercentageElapsed = 0.0;
Output.ExplosionColor = vec4(0.0);
}