A 3d fps game made in OpenGL
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// Common Inputs
|
|
in vec2 uv;
|
|
in vec3 normal;
|
|
in vec3 vertex;
|
|
//in vec3 vertCamSpace;
|
|
//in vec4 vertLightSpace;
|
|
|
|
// Fragment Shader Output
|
|
//out vec4 frag_color;
|
|
|
|
uniform vec3 ambient_light;
|
|
uniform vec3 camera_pos;
|
|
|