first commit for versioning

This commit is contained in:
Natsirt867
2026-01-05 10:03:07 -06:00
commit 987343376d
348 changed files with 89570 additions and 0 deletions

15
shaders/wmo.frag Normal file
View File

@@ -0,0 +1,15 @@
#version 400 core
out vec4 FragColor;
in vec2 TexCoord;
uniform sampler2D texSampler;
void main() {
// sample the texture
vec4 texColor = texture(texSampler, TexCoord);
if (texColor.a < 0.1) discard;
//FragColor = vec4(0.6, 0.0, 1.0, 1.0);
FragColor = texColor;
}