Files
eldek d1d117caaf Office progress
Added vents button and hallway interactable
Corrected buttons hitboxes
2026-03-22 16:26:53 -03:00

13 lines
235 B
GLSL

attribute vec4 a_position;
attribute vec4 a_color;
attribute vec2 a_texCoord0;
uniform mat4 u_projTrans;
varying vec2 fragmentTexCoord;
void main() {
fragmentTexCoord = a_texCoord0;
gl_Position = u_projTrans * a_position;
}