feat: add sky box

This commit is contained in:
2026-03-14 17:05:35 +08:00
parent fd5314a1d1
commit cf423c7db4
7 changed files with 94 additions and 33 deletions

View File

@@ -0,0 +1,9 @@
#version 460
out vec4 frag_color;
void main(void) {
frag_color = vec4(0.529, 0.808, 0.922, 1.0);
}