lets not convert depth to greyscale since this makes the exhaust and tire smoke light gray/white

tiresmoke should be a darker gray.
This commit is contained in:
Squall-Leonhart 2023-10-04 19:54:16 +11:00
parent a84c928827
commit a17cde7b2c
1 changed files with 1 additions and 1 deletions

View File

@ -10,5 +10,5 @@ layout(location = 0) out vec4 color;
void main() {
ivec2 coord = ivec2(gl_FragCoord.xy);
float depth = textureLod(depth_tex, coord, 0).r;
color = vec4(vec3(depth), 1.0); // Convert depth to grayscale color
color = vec4(depth, depth*depth, sqrt(depth), 1.0); // Convert depth to color
}