ObjToSchematic/shaders/texture_tri_vertex.vs
2022-02-12 01:54:31 +00:00

21 lines
487 B
GLSL

uniform vec3 u_lightWorldPos;
uniform mat4 u_worldViewProjection;
uniform mat4 u_worldInverseTranspose;
attribute vec4 position;
attribute vec2 texcoord;
attribute vec3 normal;
varying float v_lighting;
varying vec2 v_texcoord;
void main() {
v_texcoord = texcoord;
float lighting = abs(dot(normal, normalize(u_lightWorldPos)));
lighting = (clamp(lighting, 0.0, 1.0) * 0.66) + 0.33;
v_lighting = lighting;
gl_Position = u_worldViewProjection * vec4(position.xyz, 1.0);
}