feat: 3D spaces and Camera

This commit is contained in:
AfonsoCMSousa
2026-03-19 22:41:39 +00:00
parent a31af8f9b8
commit 2980fda372
9 changed files with 507 additions and 40 deletions
+3 -1
View File
@@ -1,8 +1,10 @@
#version 330 core
in vec4 vColor;
out vec4 FragColor;
void main() {
FragColor = vec4(1.0, 1.0, 1.0, 1.0);
FragColor = vColor;
}