Shadows, broke OpenGL, broke graphics settings, Exception raised when closing software

This commit is contained in:
Halbear 2026-08-30 01:06:23 +01:00
parent f7127e0878
commit 0d41f3e15b
36 changed files with 1187 additions and 219 deletions

View file

@ -7,7 +7,5 @@ layout(location = 1) out vec4 outColor;
layout(set = 2, binding = 0) uniform samplerCube skyboxSampler;
void main() {
vec3 textureIn = texture(skyboxSampler, outTexCoords).rgb;
vec3 adjusted =vec3(0.0,textureIn.y/200.0,textureIn.z/150.0);
outColor = vec4(adjusted, 1.0);
outColor = texture(skyboxSampler, outTexCoords);// * vec4(0.0,0.05,0.1,1);
}