diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-13 12:48:11 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-13 12:48:11 -0400 |
commit | 23f3b1471b2bbfe92252456f32c9ae55a9d1f213 (patch) | |
tree | 97f520b944aaa699854b745e182911615ce10c02 /shaders/world.vert | |
parent | 0e24afb4cd060701348398b16f2b1d89b8935b81 (diff) |
Things flash red when hit
Diffstat (limited to 'shaders/world.vert')
-rw-r--r-- | shaders/world.vert | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/shaders/world.vert b/shaders/world.vert index 1bedfd3..ce7fa5a 100644 --- a/shaders/world.vert +++ b/shaders/world.vert @@ -1,11 +1,14 @@ attribute vec3 coord2d; attribute vec2 tex_coord; +uniform vec4 tex_color; uniform mat4 ortho; varying vec2 texCoord; +varying vec4 color; void main(){ + color = tex_color; texCoord = tex_coord; gl_Position = ortho * vec4(coord2d.xyz, 1.0); } |