summaryrefslogtreecommitdiffstats
path: root/cwd/assets/altcraft/shaders/vert/face.vs
blob: ac928319c717835c84dde9d3c45226a4641bd98d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#version 330 core

in vec3 position[4];
in vec3 normal;
in vec2 uv[4];
in float uvLayer;
in float animation;
in vec3 color;
in vec2 light;

out vec3 faceTexture;
out vec3 faceNormal;
out vec3 faceAddColor;
out vec2 faceLight;

uniform mat4 projView;
uniform float GlobalTime;

void main() {
    gl_Position = projView * vec4(position[gl_VertexID], 1.0f);

    faceTexture = vec3(uv[gl_VertexID], uvLayer);
    faceTexture.y -= (uv[2].y - uv[0].y) * trunc(mod(GlobalTime * 4.0f, animation));

    faceNormal = normal;
    faceAddColor = color;
    faceLight = light;
}