share/hedgewars/Data/Shaders/water.fs
author Wuzzy <Wuzzy2@mail.ru>
Mon, 13 Nov 2017 22:14:45 +0100
changeset 12841 8610462e3d33
parent 11800 2028bd2a6c5b
child 12884 286e170f4f6b
permissions -rw-r--r--
Remove 2 unused number tags in Construction Mode GUI These numbers are shown aside the power tag, but the numbers never change. They don't serve any purpose and are just visual clutter and annoying, since they partially overlap. They are probably a leftover from copying code over from other scripts. With this changeset, only the power and turn time are left visible, as it is supposed to.

precision mediump float;

varying vec4 vcolor;


void main()
{
    gl_FragColor = vcolor;
}