feat(multiplayer): add rendering of other players as colored cubes

This commit is contained in:
2026-06-26 15:52:22 +08:00
parent 3c14a4ffe1
commit 48300b5fe2
12 changed files with 204 additions and 16 deletions

View File

@@ -0,0 +1,8 @@
#version 460
out vec4 color;
in vec2 tc;
void main() {
color = vec4(0.0, 0.0, 1.0, 1.0);
}