diff options
Diffstat (limited to 'shaders/world.frag')
-rw-r--r-- | shaders/world.frag | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/shaders/world.frag b/shaders/world.frag index c103433..d50e01d 100644 --- a/shaders/world.frag +++ b/shaders/world.frag @@ -1,11 +1,25 @@ -uniform sampler2D sampler; +uniform sampler2D texture; +uniform sampler2D normalTex; varying vec2 texCoord; varying vec4 color; -void main(){ - vec4 pixTex = texture2D(sampler, vec2(texCoord.x, 1-texCoord.y)); - if(pixTex.a == 0.0) - discard; - gl_FragColor = pixTex * color; +uniform vec4 ambientLight; +uniform vec4 light[128]; +uniform vec4 lightColor[128]; +uniform float lightImpact; +uniform int lightSize; + +void main() +{ + + vec4 pixTex = texture2D(texture, vec2(texCoord.x, 1-texCoord.y)); + if (pixTex.a < 0.1) + discard; + + if (lightSize > 0) { + + } + + gl_FragColor = pixTex * color * pixTex.a; } |