Improved camera, added new example
This commit is contained in:
parent
13e924538c
commit
5c28e2fb27
14 changed files with 335 additions and 10106 deletions
15
examples/movement/shaders/vertexShader.vert
Normal file
15
examples/movement/shaders/vertexShader.vert
Normal file
|
@ -0,0 +1,15 @@
|
|||
#version 330 core
|
||||
layout (location = 0) in vec3 aPos;
|
||||
layout (location = 1) in vec2 aUV;
|
||||
|
||||
out vec2 oUV;
|
||||
|
||||
uniform mat4 model;
|
||||
uniform mat4 view;
|
||||
uniform mat4 projection;
|
||||
|
||||
void main()
|
||||
{
|
||||
oUV = aUV;
|
||||
gl_Position = projection * view * model * vec4(aPos, 1.0);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue