share/hedgewars/Data/Shaders/default.fs
author Wuzzy <almikes@aol.com>
Tue, 26 Sep 2017 04:56:19 +0200
changeset 12539 34a91e2b927e
parent 11800 2028bd2a6c5b
child 12884 286e170f4f6b
permissions -rw-r--r--
ASA, death01: Slightly change professor's response if he got killed on the moon

precision mediump float;

uniform sampler2D tex0;
uniform vec4 tint;
uniform bool enableTexture;

varying vec2 tex;


void main()
{
    if(enableTexture){
        gl_FragColor = texture2D(tex0, tex) * tint;
    }else{
        gl_FragColor = tint;
    }
}