Office progress

Added vents button and hallway interactable
Corrected buttons hitboxes
This commit is contained in:
2026-03-22 16:26:53 -03:00
parent b8713898e5
commit d1d117caaf
13 changed files with 421 additions and 108 deletions

View File

@@ -0,0 +1,12 @@
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;
}