mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
ee9f54bacd
Former-commit-id: b6122177ce98cd52bc032e2d8414671d3bcb9b5c
41 lines
584 B
GLSL
41 lines
584 B
GLSL
#version 330 core
|
|
|
|
#include <globals.glsl>
|
|
|
|
in vec3 f_pos;
|
|
in vec3 f_norm;
|
|
in vec3 f_col;
|
|
flat in uint f_bone_idx;
|
|
|
|
layout (std140)
|
|
uniform u_locals {
|
|
mat4 model_mat;
|
|
};
|
|
|
|
struct BoneData {
|
|
mat4 bone_mat;
|
|
};
|
|
|
|
layout (std140)
|
|
uniform u_bones {
|
|
BoneData bones[16];
|
|
};
|
|
|
|
out vec4 tgt_color;
|
|
|
|
void main() {
|
|
vec3 world_norm = (
|
|
model_mat *
|
|
bones[f_bone_idx].bone_mat *
|
|
vec4(f_norm, 0.0)
|
|
).xyz;
|
|
|
|
float ambient = 0.5;
|
|
|
|
vec3 sun_dir = normalize(vec3(1.3, 1.7, 1.1));
|
|
|
|
float sun_diffuse = dot(sun_dir, world_norm) * 0.5;
|
|
|
|
tgt_color = vec4(f_col * (ambient + sun_diffuse), 1.0);
|
|
}
|