Switch-Toolbox/Toolbox/Shader/Drawing2D/KCL.vert
KillzXGaming 8939687f6a Update files.
Load vertex positions for layouts in rectangle class. This will be used for proper rotation adjusting.
Add latest muunt editor files.
Add somewhat functional mk8 camera bin editor. Points can be moved around. The map orientation determines the position of the icons to map over the model.
Fix window content UV map for layouts.
Add 2D KCL renderer for top down KCL preview for both muunt and camera editors.
2019-10-26 20:28:56 -04:00

21 lines
No EOL
324 B
GLSL

#version 330
in vec3 vPosition;
in vec3 vNormal;
in vec3 vColor;
out vec3 normal;
out vec3 color;
out vec3 position;
uniform mat4 modelViewMatrix;
uniform mat4 modelMatrix;
void main()
{
normal = vNormal;
color = vColor;
position = vPosition;
gl_Position = modelViewMatrix * vec4(vPosition.xzy, 1.0);
}